Setup
Generate an API key and connect your agent to the HiveBoss MCP server.
Step 1 — Generate an API Key
- Go to Org Settings → API Keys
- Click Generate New Key
- Give it a label (e.g.
Cursor - My Machine) - Choose a scope:
- Readonly — agent can search and read only
- Readwrite — agent can search, read, and write
- Copy the key — it will not be shown again
Step 2 — Connect your agent
After generating a key, the modal shows ready-to-use config snippets with your key already filled in. Copy the snippet for your tool and follow the steps below.
Claude Desktop
-
Open your
claude_desktop_config.jsonfile:- Mac:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
C:\Users\<username>\AppData\Roaming\Claude\claude_desktop_config.json
- Mac:
-
Add the following inside the root object:
{
"mcpServers": {
"hiveboss": {
"command": "npx",
"args": [
"mcp-remote",
"https://your-backend-url/mcp",
"--header",
"Authorization: Bearer YOUR_API_KEY"
]
}
}
}- Make sure
mcp-remoteis installed:
npm install -g mcp-remote-
Fully quit and reopen Claude Desktop
-
Click the + button in the chat input → Connectors → you should see hiveboss listed and toggled on
Cursor
- Open Cursor Settings → MCP
- Add a new MCP server with the following config:
{
"mcpServers": {
"hiveboss": {
"command": "npx",
"args": [
"mcp-remote",
"https://your-backend-url/mcp",
"--header",
"Authorization: Bearer YOUR_API_KEY"
]
}
}
}- Save and restart Cursor
Claude Code
Run this command in your terminal:
claude mcp add hiveboss https://your-backend-url/mcp \
--header "Authorization: Bearer YOUR_API_KEY"Verify it's connected:
claude mcp listAny Other MCP-Compatible Tool
HiveBoss MCP server works with any tool that supports MCP over HTTP — not just the three above. If your tool supports MCP, you only need three things:
| What | Value |
|---|---|
| URL | https://your-backend-url/mcp |
| Auth header | Authorization: Bearer YOUR_API_KEY |
| Transport | Streamable HTTP |
Check your tool's documentation for where to add a custom MCP server and pass these values. No additional setup is needed on the HiveBoss side.