agentminds-mcp
OfficialThe agentminds-mcp server connects AI agents to a cross-site collective intelligence network — pulling production-observed patterns, pushing agent reports, and getting personalized recommendations based on your tech stack.
agentminds_intro: Get an onboarding overview and live network stats — a good starting point for new users.agentminds_status: Check backend health (uptime, alerts, circuit breaker states).agentminds_register: Register a new site (URL + name) to receive an API key for authenticated features.agentminds_connect: Pull top production-observed patterns (anonymous) or personalized, stack-matched recommendations (authenticated).agentminds_push: Submit detailed agent reports (severity, metrics, warnings, recommendations, learned patterns) to enrich the shared intelligence pool.agentminds_actions: Receive a tailored action plan for your site, based on previously pushed agent data.agentminds_agent_detail: Drill into a specific agent to view its metrics, warnings, patterns, and recommendations.agentminds_site_overview: Get a dashboard view of all agents associated with your registered site and their current statuses.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@agentminds-mcpscan my website for SEO and security issues"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
agentminds-mcp
MCP server for AgentMinds — cross-site collective intelligence for production AI agents. Pull patterns from the network, push your agent reports, get personalised recommendations matched to your stack. No signup needed for the trial.
Try it now (30 seconds, no API key)
npx agentminds-mcpThen call agentminds_connect from any MCP-aware client. You'll
get top production-observed patterns from the network — no
registration required, no daily cap.
How it works — three access shapes
AgentMinds is free for everyone. There are no tiers and no upgrade between modes — just three different ways to use the same pool.
Mode | What you give | What you get |
Anonymous | nothing | Top patterns from the public pool |
Registered | URL + name (run | Stack-matched personalised recommendations |
Push back | agent reports (run | Pool grows for everyone; cross-site references surface when matches exist |
The backend auto-routes between modes based on your auth state.
agentminds_connect returns the richest content available given
your current mode. Pushing is optional and never required to keep
pulling.
Why not just ask ChatGPT or Claude?
Fair question. Large language models are excellent for general AI agent development questions, and you should keep using them. But they have three blind spots that AgentMinds fills:
1. Real-time production data
LLM training cutoffs are months behind. The vLLM threading bug that broke production agents in March? Claude can describe it now (after the cutoff caught up), but couldn't have warned you then. AgentMinds patterns include observations from sites that hit the bug the day it shipped.
2. Cross-site private knowledge
Patterns learned inside private codebases never reach public training data. A FastAPI + Pydantic + Claude SDK failure that one team solved in their internal monorepo — that knowledge stops there. AgentMinds' opt-in network shares it safely (URLs anonymised, push is explicit, GDPR-compliant).
3. Quantified pattern data
Claude can suggest a fix. AgentMinds can tell you:
14 sites tried this fix
9 solved it
5 it didn't (and why —
negative_evidence)Average resolution time: 12 minutes
Reversibility:
safe_config(no rollback risk)
That's production data, not training data.
Numbers above are illustrative for the format. Live counts vary by pattern fingerprint and current network state — see /sync/pool-stats.
Use both
We're complementary, not competitive:
General agent development questions → Claude / Gemini / ChatGPT
"What worked for someone with my exact stack in production" → AgentMinds
The MCP server makes both available in your terminal. Most users
ask Claude first, then call agentminds_connect to verify against
production patterns before shipping.
Install
Claude Code
claude mcp add agentminds -- npx agentminds-mcpOr add manually to ~/.claude/mcp.json:
{
"mcpServers": {
"agentminds": {
"command": "npx",
"args": ["agentminds-mcp"]
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"agentminds": {
"command": "npx",
"args": ["agentminds-mcp"]
}
}
}Other MCP clients
Any client following the MCP spec
works. Spawn npx agentminds-mcp over stdio.
Tools (8)
Tool | Auth | What it does |
| None | Onboarding overview + live network stats. Call this first if unsure. |
| None | Backend health ( |
| Optional | Tier-aware pull: anonymous trial / registered no-push / personalised. The main value tool. |
| None | Create a site, receive an API key. Saves to |
| Required | Submit agent reports (severity, summary, metrics, warnings, learned_patterns). Returns server-graded data quality. |
| Required | Personalised action plan for your site. |
| Required | Inspect a specific agent (metrics, warnings, patterns). |
| Required | Dashboard view of all your agents and their status. |
Configuration
AGENTMINDS_API_KEY=sk_... # required for push + authed tools
AGENTMINDS_API_URL=https://api.agentminds.dev # defaultThe server also auto-reads .agentminds.json and .env from the
calling project's cwd if AGENTMINDS_API_KEY is unset:
{
"site_id": "yoursite",
"api_key": "sk_yoursite_...",
"site_url": "https://yoursite.com"
}Privacy
Anonymous trial: no payload sent — only your IP is used for the 3/day rate limit (in-memory at the backend, not logged per-request).
Registered: the URL + name you pass to
agentminds_registerare stored. No telemetry beyond that.Push: agent reports you submit are stored in the pool. You control the content — anonymise before sending if needed. The backend strips site identity before reports are surfaced to other sites' personalised flows.
No analytics, no tracking. The MCP server makes HTTP calls only when you explicitly invoke a tool.
Honest status (2026-05-11)
This is early-stage. AgentMinds is free for everyone — there are no tiers, no paywalls, no upgrade path. Pull what you need, push what you can. Live numbers:
Metric | Value |
Contributing sites (active) | 6 |
Production-observed patterns | 3,233 |
Documented patterns | 702 |
Total tier-1 patterns | 3,983 |
The cross-site "peer sites solving the same problem" feature activates as the network grows. Today most patterns come from the external harvester (public GitHub issues, MCP corpora, awesome lists) rather than peer sites — the personalised flow surfaces them with stack-matching, but the network-effect moat is still forming.
If you're evaluating this for your team: the ARP spec is the most mature surface (formally versioned at v1.3.0, with extension points and a reorientation clause explicitly telling readers to prefer OpenTelemetry GenAI / MCP when those cover your need). The MCP server and SDKs are v1.3.x — actively iterated, may have rough edges. Bug reports welcome.
Lineage
ARP is a profile built on top of OpenTelemetry GenAI semantic
conventions, MCP, Sentry-style runtime ergonomics, Anthropic
Claude Skills, and AGNTCY OASF. The single primitive AgentMinds
owns is the cross-site learned-pattern lifecycle — see
AGENT_REPORTING_PROFILE.md
§4.1.
Resources
Site: https://agentminds.dev
Spec (ARP v1.3.0): https://github.com/agentmindsdev/profile
API base: https://api.agentminds.dev
Public pool stats: https://api.agentminds.dev/api/v1/sync/pool-stats
Changelog: CHANGELOG.md
License
MIT.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/agentmindsdev/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server