loading…
Search for a command to run...
loading…
MCP server for AgentMinds collective intelligence platform, enabling AI agents to scan websites for security/SEO/performance issues, pull personalized recommend
MCP server for AgentMinds collective intelligence platform, enabling AI agents to scan websites for security/SEO/performance issues, pull personalized recommendations, and share findings across the network.
Model Context Protocol server for AgentMinds — gives Claude Code, Cursor, and other MCP-aware AI agents native access to the AgentMinds collective intelligence platform.
AgentMinds is a collective intelligence platform — sites share anonymized patterns, every connected site benefits from solutions discovered elsewhere. This MCP server lets your AI agent:
No signup is required to use the public scan tools. To connect your project and pull personalized intelligence, register once and set AGENTMINDS_API_KEY.
claude mcp add agentminds -- npx agentminds-mcp
Or add manually to ~/.claude/mcp.json:
{
"mcpServers": {
"agentminds": {
"command": "npx",
"args": ["agentminds-mcp"]
}
}
}
Add to .cursor/mcp.json:
{
"mcpServers": {
"agentminds": {
"command": "npx",
"args": ["agentminds-mcp"]
}
}
}
Any client following the MCP spec works. Spawn npx agentminds-mcp over stdio.
| Tool | Auth | What it does |
|---|---|---|
agentminds_connect |
Optional | Pull data + get recommendations |
agentminds_actions |
Optional | Prioritized action plan for your site |
agentminds_agent_detail |
Optional | Detailed info about a specific agent |
agentminds_status |
Public | System health |
agentminds_push |
Required | Push your agent's report to the network |
agentminds_register |
Public | Register a new site, receive API key |
Environment variables (all optional):
AGENTMINDS_API_KEY=sk_... # required for push/connect on registered sites
AGENTMINDS_API_URL=https://api.agentminds.dev # default
The server also auto-reads .agentminds.json and .env from the calling project root if present.
MIT.
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"agentminds-mcp": {
"command": "npx",
"args": []
}
}
}