AgentQL MCP Server

Author:@tinyfish-io
View on GitHub

Overview

The AgentQL MCP Server is an implementation of the Model Context Protocol (MCP). It integrates AgentQL's technology to enable structured data extraction from web pages.

To use it, install the package via npm. Then, configure it within a compatible application such as Claude, Cursor, or Windsurf. A valid API key is required for the data extraction functionality.

Its key features include extracting structured data using custom prompts, integration with several popular applications, and a straightforward setup process.

Common use cases are scraping e-commerce sites for price comparisons, gathering analytics data from social media platforms, and automating data collection for research projects.

Regarding frequently asked questions: The server's purpose is to facilitate web data extraction via MCP. It is open-source and free, though an API key is needed for its core features. Integration with other tools like those mentioned is supported.

Configuration

{
  "mcpServers": {
    "agentql": {
      "command": "npx",
      "args": [
        "-y",
        "agentql-mcp"
      ],
      "env": {
        "AGENTQL_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}