Skip to content
MCP-BridgeMCP-Bridge
Cloud Infrastructure

FeatureClient MCP Config

Azure Feature Exposure Control (AFEC) provides a mechanism for the resource providers to control feature exposure to users. Resource providers typically use this mechanism to provide public/private preview for new features prior to making them generally available. Users need to explicitly register f

Config URL

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

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

Cursor

Settings → MCP Servers → Add

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

VS Code

Use with MCP extension

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

Configuration JSON

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

{
  "mcpServers": {
    "azure-com-resources-features": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-resources-features"],
      "env": {
      "FEATURECLIENT_API_KEY": "your_featureclient_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-resources-features.json

Environment Variables

FEATURECLIENT_API_KEY

Replace your_featureclient_api_key with your actual featureclient api key

Endpoints

GET/providers/Microsoft.Features/operations

ListOperations

GET/subscriptions/{subscriptionId}/providers/Microsoft.Features/features

Features_ListAll

GET/subscriptions/{subscriptionId}/providers/Microsoft.Features/providers/{resourceProviderNamespace}/features

Features_List

GET/subscriptions/{subscriptionId}/providers/Microsoft.Features/providers/{resourceProviderNamespace}/features/{featureName}

Features_Get

POST/subscriptions/{subscriptionId}/providers/Microsoft.Features/providers/{resourceProviderNamespace}/features/{featureName}/register

Features_Register