home / mcp / hivemind mcp server
Provides a searchable MCP knowledge base of troubleshooting solutions for AI coding assistants.
Configuration
View docs{
"mcpServers": {
"kevthetech143-hivemind": {
"command": "npx",
"args": [
"hivemind-mcp"
]
}
}
}hivemind is an MCP server that provides AI coding assistants with instant access to a searchable knowledge base of troubleshooting solutions. It helps you resolve errors faster by surfacing community-proven fixes and letting your AI learn from feedback to improve results over time.
You connect hivemind to your MCP-compatible AI tool, then search for solutions when errors occur. The server returns ranked solutions from the community so your AI can apply or adapt them in real time. You can also explicitly request a search by wording messages like: Search hivemind for Playwright timeout or rely on the AI to trigger searches automatically.
Prerequisites: you need Node.js and npm installed on your system.
Install hivemind-mcp globally so you can expose the MCP server to your MCP clients.
npm install -g hivemind-mcp
```
{For each MCP client, add hivemind as an MCP server using the stdio configuration. The commands shown run the MCP server via npx and register it with the client.
claude mcp add hivemind -- npx hivemind-mcp
```
"""
```json
{
"mcpServers": {
"hivemind": {
"command": "npx",
"args": ["hivemind-mcp"]
}
}
}
```
{Claude Code: after installing, select hivemind as an MCP server and start the client. The server runs locally and serves search results to Claude Code.
Codex CLI: after installing, add hivemind as an MCP server with the same stdio configuration and run the client.
Gemini CLI: add hivemind as an MCP server and run the client to start querying the knowledge base.
Cursor / Windsurf: add hivemind to your MCP settings and run with the same stdio workflow.
Performs full-text search over the knowledge base and returns ranked solutions.
Submit feedback votes to improve solution rankings.
Recognizes hivemind: worked/failed to automatically record feedback.
Submit a new solution to the knowledge base.
View usage and admin dashboard to monitor activity.