Skip to content
MCP-BridgeMCP-Bridge
Communication

Registry API MCP Config

The Registry service allows teams to manage descriptions of APIs.

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/apigee-local-registry.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to 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"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "apigee-local-registry": {
      "url": "https://mcpbridge.org/config/apigee-local-registry.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "apigee-local-registry": {
      "url": "https://mcpbridge.org/config/apigee-local-registry.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/apigee-local-registry.json to fetch programmatically.

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

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/apigee-local-registry.json

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