The AgentQL MCP Server is a Model Context Protocol (MCP) implementation that integrates AgentQL's advanced data extraction capabilities. It enables AI tools like Claude, Cursor, and Windsurf to extract structured data from web pages using natural language prompts.
extract-web-data
: Extracts structured data from a given URL using a prompt that describes the data and fields to extract.npm install -g agentql-mcp
⌘
+,
.agentql
server configuration:json
{
"mcpServers": {
"agentql": {
"command": "npx",
"args": ["-y", "agentql-mcp"],
"env": {
"AGENTQL_API_KEY": "YOUR_API_KEY"
}
}
}
}
env AGENTQL_API_KEY=YOUR_API_KEY npx -y agentql-mcp
agentql
server configuration:json
{
"mcpServers": {
"agentql": {
"command": "npx",
"args": ["-y", "agentql-mcp"],
"env": {
"AGENTQL_API_KEY": "YOUR_API_KEY"
}
}
}
}
Test the integration by giving your agent a task like:
Extract the list of videos from the page https://www.youtube.com/results?search_query=agentql, every video should have a title, an author name, a number of views and a url to the video. Make sure to exclude ads items. Format this as a markdown table.
npm install
npm run build
npm run watch
Replace the default config with:
{
"mcpServers": {
"agentql": {
"command": "/path/to/agentql-mcp/dist/index.js",
"env": {
"AGENTQL_API_KEY": "YOUR_API_KEY"
}
}
}
}
Use the MCP Inspector for debugging:
npm run inspector
The AgentQL MCP Server is designed to enhance AI tools with web data extraction capabilities, making it easier to integrate structured data into workflows.