@headvroom/mcp
v1.2.0
Published
MCP server for Headvroom knowledge graphs - enables Claude and other AI tools to access your knowledge graphs
Maintainers
Readme
@headvroom/mcp
MCP (Model Context Protocol) server for Headvroom knowledge graphs.
Enables Claude Desktop, Claude CLI, Cursor, Windsurf, and other MCP-compatible AI tools to access your Headvroom knowledge graphs.
Installation
npx -y @headvroom/mcpSetup
1. Get an API Key
- Log in to headvroom.com
- Click your avatar → Settings
- Go to API Keys → Generate New Key
- Copy the key (starts with
hv_)
2. Configure Your AI Tool
Claude CLI
claude mcp add --transport stdio --scope user headvroom \
--env HEADVROOM_API_KEY=hv_your_key_here \
-- npx -y @headvroom/mcpClaude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"headvroom": {
"command": "npx",
"args": ["-y", "@headvroom/mcp"],
"env": {
"HEADVROOM_API_KEY": "hv_your_key_here"
}
}
}
}Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"headvroom": {
"command": "npx",
"args": ["-y", "@headvroom/mcp"],
"env": {
"HEADVROOM_API_KEY": "hv_your_key_here"
}
}
}
}3. Verify
Ask your AI: "What graphs do I have in Headvroom?"
Environment Variables
| Variable | Required | Description |
|----------|----------|-------------|
| HEADVROOM_API_KEY | Yes | Your Headvroom API key (starts with hv_) |
| HEADVROOM_API_URL | No | API URL (defaults to https://headvroom.com) |
Available Resources
headvroom://graphs- List all your knowledge graphsheadvroom://graph/name/{name}- Get a graph by nameheadvroom://node/{id}- Get node detailsheadvroom://nodes/search?query={q}- Search nodesheadvroom://activity/recent- Recent activity
Documentation
Full documentation: docs.headvroom.com/integrations/mcp
License
MIT
