SeaBreezeManagementClient Claude Desktop Config
Add the SeaBreezeManagementClient MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your credentials in the
envsection - 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_KEYReplace your_seabreezemanagementclient_api_key with your actual seabreezemanagementclient api key
Endpoints
GET
/providers/Microsoft.ServiceFabricMesh/operationsLists all of the available operations.
GET
/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabricMesh/applicationsGets all the application resources in a given subscription.
GET
/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabricMesh/networksGets all the network resources in a given subscription.
GET
/subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabricMesh/volumesGets all the volume resources in a given subscription.
GET
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applicationsGets 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}/servicesGets services of a given application.
GET
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications/{applicationName}/services/{serviceName}Gets the properties of the service.