Integrations
MCP Server
MCP (Model Context Protocol) is the universal standard for connecting AI tools to agents. Claude Code, Cursor, GitHub Copilot, and AWS AgentCore all support it. By installing the Hober MCP Server, any agent running on these platforms can use Hober's 200+ models, smart routing, and cost estimation without writing any integration code.
Think of it this way: instead of hardcoding API calls to OpenAI or DeepSeek in your agent, you install Hober as an MCP tool. Your agent discovers Hober's capabilities automatically and can call any model through it — with fallbacks, cost optimization, and rate limit handling built in.
Available Tools
| Tool | Description | Parameters |
|---|---|---|
| chat_completion | AI inference via 200+ models | model, messages, temperature, max_tokens |
| list_models | Available models with pricing | provider? (filter by provider) |
| list_providers | Available providers with health status | — |
| estimate_cost | Estimate inference cost before calling | model, input_tokens, output_tokens |
Installation
// Add to .mcp.json
{
"mcpServers": {
"hober": {
"command": "npx",
"args": ["@hober/mcp-server"],
"env": {
"HOBER_API_KEY": "hb_live_your_key_here"
}
}
}
}Supported Platforms
| Platform | Config File | Status |
|---|---|---|
| Claude Code | .mcp.json | Supported |
| Cursor | .cursor/mcp.json | Supported |
| GitHub Copilot | .github/mcp.json | Supported |
| AWS AgentCore | MCP Gateway config | Supported |
| Any MCP client | stdio transport | Supported |
Environment Variables
| Variable | Required | Description |
|---|---|---|
| HOBER_API_KEY | Yes | Your Hober API key (hb_live_...) |
| HOBER_GATEWAY_URL | No | Gateway URL (default: https://hober-gateway.fly.dev) |
| HOBER_DEFAULT_MODEL | No | Default model (default: deepseek-chat) |