Skip to content
MCP-Bridge
Developer Tools

SeaBreezeManagementClient MCP Config

APIs to deploy and manage resources to SeaBreeze.

Config URL

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

https://mcp-bridge.pages.dev/config/azure-com-servicefabricmesh.json

Configuration JSON

Use curl https://mcp-bridge.pages.dev/config/azure-com-servicefabricmesh.json to fetch programmatically.

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

Environment Variables

SEABREEZEMANAGEMENTCLIENT_API_KEY

Replace your_seabreezemanagementclient_api_key with your actual seabreezemanagementclient api key

Endpoints

GET/providers/Microsoft.ServiceFabricMesh/operations

Lists all of the available operations.

GET/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabricMesh/applications

Gets all the application resources in a given subscription.

GET/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabricMesh/networks

Gets all the network resources in a given subscription.

GET/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabricMesh/volumes

Gets all the volume resources in a given subscription.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications

Gets all the application resources in a given resource group.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications/{applicationName}

Gets the application resource.

PUT/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications/{applicationName}

Creates or updates an application resource.

DELETE/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications/{applicationName}

Deletes the application resource.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications/{applicationName}/services

Gets services of a given application.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications/{applicationName}/services/{serviceName}

Gets the properties of the service.