├── .eslintrc.json ├── .github ├── CODEOWNERS ├── config │ └── .pre-commit-config-template.yaml └── workflows │ ├── ci.yml │ ├── publish.yml │ ├── secrets-scanner.yml │ └── vuln-scanner-pr.yml ├── .gitignore ├── .prettierrc.js ├── .semgrepignore ├── .tags.json ├── .yamllint ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── glama.json ├── package.json ├── smithery.yaml ├── src └── index.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/config/.pre-commit-config-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/.github/config/.pre-commit-config-template.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/secrets-scanner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/.github/workflows/secrets-scanner.yml -------------------------------------------------------------------------------- /.github/workflows/vuln-scanner-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/.github/workflows/vuln-scanner-pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | dist/ 4 | *.log 5 | .env* 6 | .npmrc 7 | .DS_Store 8 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.semgrepignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/.semgrepignore -------------------------------------------------------------------------------- /.tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/.tags.json -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/.yamllint -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/README.md -------------------------------------------------------------------------------- /glama.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/glama.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/package.json -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyfish-io/agentql-mcp/HEAD/tsconfig.json --------------------------------------------------------------------------------