Skip to content
MCP-Bridge
Communication

Apicurio Registry API MCP Config

Apicurio Registry is a datastore for standard event schemas and API designs. Apicurio Registry enables developers to manage and share the structure of their data using a REST interface. For example, client applications can dynamically push or pull the latest updates to or from the registry without n

Config URL

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

https://mcp-bridge.pages.dev/config/apicurio-local-registry.json

Configuration JSON

Use curl https://mcp-bridge.pages.dev/config/apicurio-local-registry.json to fetch programmatically.

{
  "mcpServers": {
    "apicurio-local-registry": {
      "command": "npx",
      "args": ["-y","@mcp/apicurio-local-registry"],
      "env": {
      "APICURIO_REGISTRY_API_API_KEY": "your_apicurio_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://mcp-bridge.pages.dev/config/apicurio-local-registry.json

Environment Variables

APICURIO_REGISTRY_API_API_KEY

Replace your_apicurio_registry_api_api_key with your actual apicurio registry api api key

Endpoints

GET/artifacts

List all artifact IDs

POST/artifacts

Create artifact

GET/artifacts/{artifactId}

Get latest artifact

PUT/artifacts/{artifactId}

Update artifact

DELETE/artifacts/{artifactId}

Delete artifact

GET/artifacts/{artifactId}/meta

Get artifact metadata

POST/artifacts/{artifactId}/meta

Get artifact metadata by content

PUT/artifacts/{artifactId}/meta

Update artifact metadata

GET/artifacts/{artifactId}/rules

List artifact rules

POST/artifacts/{artifactId}/rules

Create artifact rule