agentql-mcp
Model Context Protocol server that integrates AgentQL's data extraction capabilities.
File Explorer
Download Latest Version (.zip)- .pre-commit-config-template.yaml
- ci.yml
- publish.yml
- secrets-scanner.yml
- vuln-scanner-pr.yml
- CODEOWNERS
- index.ts
- .eslintrc.json
- .gitignore
- .prettierrc.js
- .semgrepignore
- .tags.json
- .yamllint
- Dockerfile
- glama.json
- golden-images.yaml
- LICENSE
- Makefile
- package-lock.json
- package.json
- README.md
- smithery.yaml
- tsconfig.json
# Installation Guide
git clone https://github.com/tinyfish-io/agentql-mcp
Downloads the entire project code from GitHub to your computer.
cd agentql-mcp
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Node.js Node.js must be installed to use npm.
npm install -g agentql-mcp
Installs the package published on the npm registry globally β no need to clone the source.
Pulled directly from this repo's README.
3. Docker
Easy- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t agentql-mcp .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 agentql-mcp
Runs the built image as an actual container.
4. Node.js
Easynpm install -g agentql-mcp
Installs the package published on the npm registry globally β no need to clone the source.
[](https://insiders.vscode.dev/redirect/mcp/install?name=agentql&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22agentql-mcp%22%5D%2C%22env%22%3A%7B%22AGENTQL_API_KEY%22%3A%22%24%7Binput%3AapiKey%7D%22%7D%7D&inputs=%5B%7B%22type%22%3A%22promptString%22%2C%22id%22%3A%22apiKey%22%2C%22description%22%3A%22AgentQL+API+Key%22%2C%22password%22%3Atrue%7D%5D) [](https://insiders.vscode.dev/redirect/mcp/install?name=agentql&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22agentql-mcp%22%5D%2C%22env%22%3A%7B%22AGENTQL_API_KEY%22%3A%22%24%7Binput%3AapiKey%7D%22%7D%7D&inputs=%5B%7B%22type%22%3A%22promptString%22%2C%22id%22%3A%22apiKey%22%2C%22description%22%3A%22AgentQL+API+Key%22%2C%22password%22%3Atrue%7D%5D&quality=insiders)
Type this command into your terminal and run it.
Pulled directly from this repo's README.
5. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
