Official Model Context Protocol (MCP) server for Agent Critiq — the AI agents & software review platform.
This server lets Claude, Cursor, VS Code Copilot, and any MCP-compatible AI assistant query the Agent Critiq database of 100+ AI tools in real time — ratings, pricing, categories, and direct review links.
| Tool | Description |
|---|---|
search_ai_tools |
Search by keyword, category, rating, or free-only filter |
get_tool_detail |
Full details for a specific tool by slug or name |
list_categories |
All 17 categories with tool counts |
get_top_rated |
Top-rated tools overall or by category |
compare_tools |
Side-by-side comparison of 2-3 tools |
- Node.js 18 or later
- Clone/download this repository
cd mcp-server
npm installnode index.js
# → ✅ Agent Critiq MCP Server running — 101 AI tools ready.-
Open your Claude Desktop config file:
- macOS/Linux:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS/Linux:
-
Add the following entry (adjust the path):
{
"mcpServers": {
"agent-critiq": {
"command": "node",
"args": ["C:/Users/YourName/path/to/agent-critiq/mcp-server/index.js"]
}
}
}- Restart Claude Desktop. You'll see Agent Critiq in the tools panel. ✅
Add to your workspace .cursor/mcp.json or mcp.json:
{
"mcpServers": {
"agent-critiq": {
"command": "node",
"args": ["./mcp-server/index.js"]
}
}
}Once connected, ask your AI assistant:
"What are the top 5 free coding AI agents according to Agent Critiq?"
"Compare Cursor vs GitHub Copilot vs Codeium."
"Find me autonomous AI agents with a rating above 4.5."
"List all AI image generation tools in the Agent Critiq database."
The server reads from public/agent-critiq-2026-dataset.json — a curated, machine-readable snapshot of the Agent Critiq catalogue.
- 101 AI tools across 17 categories
- Updated regularly and synced with agentcritiq.com
- Also available as a Hugging Face Dataset
MIT — free to use, fork, and integrate.
Made with ❤️ by Agent Critiq