BlueHive MCP Server
Model Context Protocol (MCP) server implementation for BlueHive Health, enabling AI agents and tools like Claude, ChatGPT, and Cursor to interact with our platform.
Installation
Terminal
npm install @bluehive/sdk-mcpPackage:
@bluehive/sdk-mcpView on npm →Features
- Works with Claude Desktop, ChatGPT, Cursor, and more
- Full API coverage as MCP tools
- Automatic schema generation
- Stdio and HTTP transport support
- Easy configuration via environment variables
Quick Example
TypeScript
// Add to your MCP client configuration:
{
"mcpServers": {
"bluehive": {
"command": "npx",
"args": ["-y", "@bluehive/sdk-mcp"],
"env": {
"BLUEHIVE_API_KEY": "your-api-key"
}
}
}
}