MCP
FabHub MCP exposes fixed, public-safe tools for API-backed agent workflows. There is no generic HTTP proxy.
Install
npx -y @fabhub/mcp
Local configuration
{
"mcpServers": {
"fabhub": {
"command": "npx",
"args": ["-y", "@fabhub/mcp"],
"env": {
"FABHUB_API_KEY": "pk_test_example"
}
}
}
}
Tool safety
- Read-only tools are advertised when the credential has matching read scopes.
- Write tools require matching write scopes and an explicit confirmation input.
- Destructive tools require delete scopes and explicit delete confirmation.
- Hosted HTTP mode validates credentials per request and does not store tenant keys.
Tool manifest
| Tool | Scopes | Safety |
|------|--------|--------|
| list_items | items:read | read_only |
| get_item | items:read | read_only |
| get_organization | organization:read | read_only |
| list_orders | orders:read | read_only |
| list_contacts | contacts:read | read_only |
| get_usage_summary | usage:read | read_only |
| list_webhooks | webhooks:read | read_only |
| get_webhook | webhooks:read | read_only |
| create_webhook | webhooks:write | write, requires confirmation |
| update_webhook | webhooks:write | write, requires confirmation |
| delete_webhook | webhooks:delete | destructive, requires confirmation |
| list_webhook_deliveries | webhooks:deliveries:read | read_only |