Skip to content
MCP-Bridge
Developer Tools

SeaBreezeManagementClient Claude Desktop Config

Add the SeaBreezeManagementClient MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. Restart Claude Desktop

Configuration JSON

Copy the entire block into your claude_desktop_config.json

{
  "mcpServers": {
    "azure-com-servicefabricmesh": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-servicefabricmesh"
      ],
      "env": {
        "SEABREEZEMANAGEMENTCLIENT_API_KEY": "your_seabreezemanagementclient_api_key"
      }
    }
  }
}

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.