Control API v1 Claude Desktop Config
Add the Control API v1 MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your credentials in the
envsection - Restart Claude Desktop
Configuration JSON
Copy the entire block into your claude_desktop_config.json
{
"mcpServers": {
"ably-net-control": {
"command": "npx",
"args": [
"-y",
"@mcp/ably-net-control"
],
"env": {
"CONTROL_API_V1_API_KEY": "your_control_api_v1_api_key"
}
}
}
}Environment Variables
CONTROL_API_V1_API_KEYReplace your_control_api_v1_api_key with your actual control api v1 api key
Endpoints
GET
/accounts/{account_id}/appsLists apps
POST
/accounts/{account_id}/appsCreates an app
GET
/apps/{app_id}/keysLists app keys
POST
/apps/{app_id}/keysCreates a key
PATCH
/apps/{app_id}/keys/{key_id}Updates a key
POST
/apps/{app_id}/keys/{key_id}/revokeRevokes a key
GET
/apps/{app_id}/namespacesLists namespaces
POST
/apps/{app_id}/namespacesCreates a namespace
DELETE
/apps/{app_id}/namespaces/{namespace_id}Deletes a namespace
PATCH
/apps/{app_id}/namespaces/{namespace_id}Updates a namespace