Skip to content
MCP-BridgeMCP-Bridge
Developer Tools

AttestationClient MCP Config

Describes the interface for the per-tenant enclave service.

Config URL

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

https://mcpbridge.org/config/azure-com-attestation.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": {
    "azure-com-attestation": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-attestation"
      ],
      "env": {
        "ATTESTATIONCLIENT_API_KEY": "your_attestationclient_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "azure-com-attestation": {
      "url": "https://mcpbridge.org/config/azure-com-attestation.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "azure-com-attestation": {
      "url": "https://mcpbridge.org/config/azure-com-attestation.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/azure-com-attestation.json to fetch programmatically.

{
  "mcpServers": {
    "azure-com-attestation": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-attestation"],
      "env": {
      "ATTESTATIONCLIENT_API_KEY": "your_attestationclient_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/azure-com-attestation.json

Environment Variables

ATTESTATIONCLIENT_API_KEY

Replace your_attestationclient_api_key with your actual attestationclient api key

Endpoints

GET/.well-known/openid-configuration

Retrieves the OpenID Configuration data for the Azure Attestation Service

GET/certs

Retrieves the OpenID Configuration data for the Azure Attestation Service

GET/operations/policy/current

Retrieves the current policy for a given kind of TEE.

POST/operations/policy/current

Resets the attestation policy for the specified tenant and reverts to the default policy.

PUT/operations/policy/current

Sets the policy for a given kind of TEE.

POST/operations/policy/updatepolicy

Accepts a new policy document and returns a JWT which expresses used in preparation to set attestation policy.