Skip to content
MCP-Bridge
Cloud Infrastructure

BatchService MCP Config

A client for issuing REST requests to the Azure Batch service.

Config URL

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

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

Configuration JSON

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

{
  "mcpServers": {
    "azure-com-batch-batchservice": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-batch-batchservice"],
      "env": {
      "BATCHSERVICE_API_KEY": "your_batchservice_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-batch-batchservice.json

Environment Variables

BATCHSERVICE_API_KEY

Replace your_batchservice_api_key with your actual batchservice api key

Endpoints

GET/applications

Lists all of the applications available in the specified account.

GET/applications/{applicationId}

Gets information about the specified application.

GET/certificates

Lists all of the certificates that have been added to the specified account.

POST/certificates

Adds a certificate to the specified account.

GET/certificates(thumbprintAlgorithm={thumbprintAlgorithm},thumbprint={thumbprint})

Certificate_Get

DELETE/certificates(thumbprintAlgorithm={thumbprintAlgorithm},thumbprint={thumbprint})

Deletes a certificate from the specified account.

POST/certificates(thumbprintAlgorithm={thumbprintAlgorithm},thumbprint={thumbprint})/canceldelete

Cancels a failed deletion of a certificate from the specified account.

GET/jobs

Lists all of the jobs in the specified account.

POST/jobs

Adds a job to the specified account.

GET/jobs/{jobId}

Gets information about the specified job.