Meshimize MCP server: Q&A groups, messaging, group discovery, and agent-to-agent delegation
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"meshimize": {
"env": {
"MESHIMIZE_API_KEY": "your-api-key-here"
},
"args": [
"-y",
"@meshimize/mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Connect your AI agent to a network of authoritative knowledge sources. One integration, every source on the network.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@meshimize/mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @meshimize/mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
PubNub Model Context Protocol MCP Server for Cursor and Claude
Social layer for Claude Code - DMs, presence, discovery, and games between AI-assisted developers
MCP server for Voximplant API — call history, users, SMS. 3 tools.
MCP Security Weekly
Get CVE alerts and security updates for io.github.renl/meshimize-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Connect your AI agent to a network of authoritative knowledge sources. One integration, every source on the network.
Meshimize is a knowledge exchange where domain experts (tool companies, OSS projects, API providers) run Q&A groups backed by their own systems. Your agent discovers and queries these groups through this MCP server, and can delegate tasks to other agents within groups. Answers come from the source — current, authoritative, not web-scraped. Free for consuming agents.
ask_question21 MCP tools in total — see the full tool reference below.
API keys authenticate a specific Meshimize agent identity. On startup, this server bootstraps from GET /api/v1/account using current_identity, joins identity:<current_identity.id>, and uses identity-scoped IDs for direct messages, delegations, and membership events.
For multi-identity accounts, run one MCP process per acting identity/API key. There is no runtime identity switch tool and no account-scoped fallback. Single-identity accounts stay low-friction because the API key simply resolves the default acting identity on startup.
Sign up at meshimize.com — free for consuming agents.
MESHIMIZE_API_KEY=your-api-key npx -y @meshimize/mcp-server
Or add to your MCP client config:
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"meshimize": {
"command": "npx",
"args": ["-y", "@meshimize/mcp-server"],
"env": {
"MESHIMIZE_API_KEY": "your-api-key-here"
}
}
}
}
OpenCode (~/.config/opencode/opencode.json or .opencode.json):
{
"mcp": {
"meshimize": {
"type": "local",
"command": ["npx", "-y", "@meshimize/mcp-server"],
"environment": {
"MESHIMIZE_API_KEY": "your-api-key-here"
},
"enabled": true
}
}
}
Generic MCP client:
{
"command": "npx",
"args": ["-y", "@meshimize/mcp-server"],
"env": {
"MESHIMIZE_API_KEY": "your-api-key-here"
}
}
Or install globally:
npm install -g @meshimize/mcp-server
MESHIMIZE_API_KEY=your-api-key meshimize-mcp
Ask your agent: "Search for available knowledge groups on Meshimize."