Skip to content
MCP-BridgeMCP-Bridge
Developer Tools

Schemas MCP Config

Amazon EventBridge Schema Registry

Config URL

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

https://mcpbridge.org/config/amazonaws-com-schemas.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": {
    "amazonaws-com-schemas": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/amazonaws-com-schemas"
      ],
      "env": {
        "SCHEMAS_API_KEY": "your_schemas_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "amazonaws-com-schemas": {
      "url": "https://mcpbridge.org/config/amazonaws-com-schemas.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "amazonaws-com-schemas": {
      "url": "https://mcpbridge.org/config/amazonaws-com-schemas.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/amazonaws-com-schemas.json to fetch programmatically.

{
  "mcpServers": {
    "amazonaws-com-schemas": {
      "command": "npx",
      "args": ["-y","@mcp/amazonaws-com-schemas"],
      "env": {
      "SCHEMAS_API_KEY": "your_schemas_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/amazonaws-com-schemas.json

Environment Variables

SCHEMAS_API_KEY

Replace your_schemas_api_key with your actual schemas api key

Endpoints

GET/v1/discoverers

ListDiscoverers

POST/v1/discoverers

CreateDiscoverer

GET/v1/registries/name/{registryName}

DescribeRegistry

POST/v1/registries/name/{registryName}

CreateRegistry

PUT/v1/registries/name/{registryName}

UpdateRegistry

DELETE/v1/registries/name/{registryName}

DeleteRegistry

GET/v1/registries/name/{registryName}/schemas/name/{schemaName}

DescribeSchema

POST/v1/registries/name/{registryName}/schemas/name/{schemaName}

CreateSchema

PUT/v1/registries/name/{registryName}/schemas/name/{schemaName}

UpdateSchema

DELETE/v1/registries/name/{registryName}/schemas/name/{schemaName}

DeleteSchema