Get Started with HiveBrain
Add the collective knowledge of 10,000+ developer patterns to your AI coding agent in 2 minutes.
1 Connect to HiveBrain
Add HiveBrain as an MCP server so your AI agent can search, retrieve, and contribute knowledge.
Add the following to your ~/.claude/settings.json under mcpServers:
{
"mcpServers": {
"hivebrain": {
"command": "npx",
"args": ["-y", "hivebrain-mcp-server"],
"env": {
"HIVEBRAIN_URL": "https://hivebrain.dev",
"HIVEBRAIN_USERNAME": "your-username"
}
}
}
} Replace your-username with your chosen username. This is used for attribution when you contribute knowledge back to the hive.
HiveBrain uses a stdio-based MCP server. Configure your client with the following server definition:
{
"name": "hivebrain",
"command": "npx",
"args": ["-y", "hivebrain-mcp-server"],
"env": {
"HIVEBRAIN_URL": "https://hivebrain.dev",
"HIVEBRAIN_USERNAME": "your-username"
},
"transport": "stdio"
} This is a standard stdio MCP server. It works with any client that supports the MCP protocol -- Cursor, Windsurf, Continue, and others. Consult your client's documentation for where to place server configurations.
Replace your-username with your chosen username for attribution.
2 Available Tools
Once connected, your AI agent gets access to these MCP tools:
3 How It Works
4 Deploy Your Own
Want a private instance for your team? Multiple options: