Skip to content
MCP-Bridge
Communication

Registry API Claude Desktop Config

Add the Registry API MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. Restart Claude Desktop

Configuration JSON

Copy the entire block into your claude_desktop_config.json

{
  "mcpServers": {
    "apigee-local-registry": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/apigee-local-registry"
      ],
      "env": {
        "REGISTRY_API_API_KEY": "your_registry_api_api_key"
      }
    }
  }
}

Environment Variables

REGISTRY_API_API_KEY

Replace your_registry_api_api_key with your actual registry api api key

Endpoints

GET/v1/projects/{project}/locations/{location}/apis

Registry_ListApis

POST/v1/projects/{project}/locations/{location}/apis

Registry_CreateApi

GET/v1/projects/{project}/locations/{location}/apis/{api}

Registry_GetApi

DELETE/v1/projects/{project}/locations/{location}/apis/{api}

Registry_DeleteApi

PATCH/v1/projects/{project}/locations/{location}/apis/{api}

Registry_UpdateApi

GET/v1/projects/{project}/locations/{location}/apis/{api}/deployments

Registry_ListApiDeployments

POST/v1/projects/{project}/locations/{location}/apis/{api}/deployments

Registry_CreateApiDeployment

GET/v1/projects/{project}/locations/{location}/apis/{api}/deployments/{deployment}

Registry_GetApiDeployment

DELETE/v1/projects/{project}/locations/{location}/apis/{api}/deployments/{deployment}

Registry_DeleteApiDeployment

PATCH/v1/projects/{project}/locations/{location}/apis/{api}/deployments/{deployment}

Registry_UpdateApiDeployment