everything vs agentql-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | agentql-mcp by tinyfish-io | |
|---|---|---|
| Stars | ★ 85,748 | ★ 170 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Web ScrapingDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Shell |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
agentql-mcp · Summary
AgentQL MCP server enables structured web data extraction via a single tool with clear configuration across multiple MCP clients.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
agentql-mcp · Use cases
- Extract structured data from websites for research and analysis
- Automate data collection from e-commerce sites for price monitoring
- Gather information from news sites for content aggregation
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingagentql-mcp · Install
Installation
- Install the package globally:
npm install -g agentql-mcp- Configure Claude Desktop:
Add to claude_desktop_config.json:
{
"mcpServers": {
"agentql": {
"command": "npx",
"args": ["-y", "agentql-mcp"],
"env": {
"AGENTQL_API_KEY": "YOUR_API_KEY"
}
}
}
}- Get your API key from the [AgentQL Dev Portal](https://dev.agentql.com)