Hivemind

Hivemind

Provides instant access to a searchable knowledge base of 16,000+ community-driven troubleshooting solutions for common coding problems. Includes community feedback and smart ranking to help AI assistants find the most effective solutions.

Category
访问服务器

README

hivemind

Instant troubleshooting solutions for AI coding assistants Community-driven knowledge base with 16,000+ solutions and growing

Works with any MCP-compatible CLI: Claude Code, Codex CLI, Gemini CLI, Grok CLI, Cursor, and more.

npm version License: MIT


🎯 What is hivemind?

hivemind is a Model Context Protocol (MCP) server that gives AI coding assistants instant access to a searchable knowledge base of troubleshooting solutions.

Supported platforms:

  • Claude Code (Anthropic)
  • Codex CLI (OpenAI)
  • Gemini CLI (Google)
  • Grok CLI (xAI)
  • Cursor
  • Any MCP-compatible tool

When you hit an error, search hivemind - get ranked solutions from the community in seconds.


✨ Features

  • 🔍 Full-text search - Fast Postgres FTS with relevance ranking
  • 👍 Community feedback - Say "hivemind: worked" to rate solutions
  • 🎯 Trigger words - AI automatically tracks your feedback
  • 📊 Smart ranking - Solutions sorted by success rate and votes
  • 🚀 Zero config - No API keys, no setup, just install and use
  • Fast - < 1s search response time

📦 Installation

Quick Install

Claude Code:

npm install -g hivemind-mcp
claude mcp add hivemind -- npx hivemind-mcp

Codex CLI:

npm install -g hivemind-mcp
codex mcp add hivemind -- npx -y hivemind-mcp

Gemini CLI:

npm install -g hivemind-mcp
gemini mcp add hivemind npx -y hivemind-mcp

Cursor / Windsurf:

npm install -g hivemind-mcp
# Add to MCP settings: npx hivemind-mcp

Manual Setup (Claude Code)

Option A: Via Claude Code UI

  1. Open Claude Code settings
  2. Go to MCP Servers section
  3. Add new server:
    • Name: hivemind
    • Command: npx
    • Args: ["hivemind-mcp"]

Option B: Via config file

Edit ~/.config/claude/mcp_config.json:

{
  "mcpServers": {
    "hivemind": {
      "command": "npx",
      "args": ["hivemind-mcp"]
    }
  }
}

Restart your CLI/editor to activate the MCP server.


🚀 Usage

Search for Solutions

User: "MCP connection refused"
AI: [searches hivemind automatically]

Or explicitly:

User: "Search hivemind for playwright timeout"

Give Feedback

After trying a solution:

User: "hivemind: worked"

Or:

User: "hivemind: failed"

Your AI automatically tracks your feedback to improve rankings!


📚 Example Queries

Problem Query
MCP won't connect "MCP connection refused"
Playwright issues "playwright click not working"
Claude hooks "hooks don't fire"
Auth problems "user signed in but gets must sign in error"
Supabase issues "supabase migration failed"

Current knowledge base: 16,000+ solutions (and growing) covering MCP, Playwright, Supabase, web development, databases, security, and more.


🤝 Contributing Solutions

Have a solution that helped you? Share it with the community!

Via MCP Tool

User: "I want to contribute a solution"
Claude: [guides you through contribution form]

Via Email

Send to: [your-email] (Beta testers will get this in welcome message)

Include:

  • Problem/error message
  • Category (mcp-troubleshooting, web-automation, etc.)
  • Step-by-step solutions
  • What to check before/after
  • Common mistakes

🎓 How Trigger Words Work

When you say "hivemind: worked" or "hivemind: failed":

  1. Your AI recognizes the trigger phrase
  2. Automatically calls feedback tool
  3. Backend increments thumbs_up or thumbs_down
  4. Future searches show better-ranked solutions

Why trigger words? Natural language ("that worked") is ambiguous. Trigger phrases ensure your AI ALWAYS catches your feedback.


🛡️ Infrastructure

Rate Limits:

  • Search: 100 requests/hour per IP
  • Voting: 20 votes/hour per IP
  • Contributions: 5/hour per IP

Stack:

  • Backend: Supabase (Postgres 17 + Edge Functions)
  • Database: 16,000+ solutions
  • Security: IP banning, input sanitization, moderated contributions

🔒 Security

hivemind is designed to be a safe, public knowledge base. We take security seriously:

Credential Scanning

All contributions are scanned for sensitive data before storage. Our scanner blocks:

  • API Keys: OpenAI, Anthropic, AWS, GCP, Azure, Stripe, Slack, GitHub, GitLab, and 30+ providers
  • Tokens: JWT, Bearer tokens, OAuth tokens, PATs
  • Secrets: Database passwords, webhook URLs, Basic auth headers
  • Obfuscation Attempts: Base64-encoded secrets, zero-width character tricks

How it works:

  1. Pattern matching against 45+ known secret formats
  2. Base64 decode + rescan for hidden secrets
  3. Entropy analysis for high-randomness strings near keywords like key=, secret=
  4. Zero-width character stripping to defeat obfuscation

If your contribution is rejected, check for accidentally included credentials.

Row-Level Security

All database tables use Postgres RLS policies. The public API can only:

  • Read solutions and skills
  • Submit contributions (to moderation queue)
  • Submit feedback votes

No direct write access to production data.

Rate Limiting

Aggressive rate limits prevent abuse:

  • Search: 100/hour
  • Voting: 20/hour
  • Contributions: 5/hour

What We Don't Store

  • No user accounts required
  • No tracking cookies
  • No personally identifiable information
  • IP addresses used only for rate limiting (not logged with searches)

See PRIVACY.md for full privacy policy.


📊 Monitoring

Beta testers: We monitor usage via Supabase dashboard. You can check your own usage:

# View your recent searches (if you clone the repo)
source ~/.claude/scripts/turso-helpers.sh
db-stats

See MONITORING.md for admin dashboard access.


🗺️ Roadmap

Completed:

  • ✅ Core search and feedback
  • ✅ Trigger word system
  • ✅ Rate limiting
  • ✅ Security (IP bans, sanitization, moderation queue)
  • ✅ 16,000+ solutions
  • ✅ Version update notifications

Coming Soon:

  • Semantic search (AI embeddings)
  • Contributor leaderboard
  • Browser extension
  • Dangerous command blocklist

See ROADMAP.md for full details.


🔧 Technical Details

Stack:

  • MCP Server: TypeScript + @modelcontextprotocol/sdk
  • Backend: Supabase (Postgres 17 + Deno Edge Functions)
  • Search: Postgres Full-Text Search (ts_rank)
  • Hosting: Supabase free tier + npm registry

Architecture:

User → Any AI CLI/Editor → MCP → Supabase Edge Functions → Postgres

Public Source:

  • hivemind-mcp/ - MCP client package (what you install via npm)

📄 Documentation


❓ Troubleshooting

MCP not loading

# Check if installed
npm list -g hivemind-mcp

# Reinstall
npm install -g hivemind-mcp@latest

# Restart your AI CLI/editor

Search not working

  1. Check your AI CLI MCP logs
  2. Verify internet connection
  3. Try: "Search hivemind for test"

Feedback not tracked

Known issue - tracking endpoint works but MCP may not call it consistently. We're debugging this.


🐛 Reporting Issues

  1. Check existing issues
  2. Create new issue with:
    • What you tried
    • What happened
    • Your AI CLI (Claude Code, Codex, Gemini, etc.)
    • Operating system

📜 License

MIT License - see LICENSE file


🌟 Star History

If hivemind helped you, give it a star ⭐


Built with ❤️ for the AI coding community

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选