Skip to content
MCP-Bridge
Cloud InfrastructureAuto-generated

BatchService MCP Server

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

Quick Setup

Transport: STDIO

Command: npx -y @mcp/azure-com-batch-batchservice

Environment Variables

BATCHSERVICE_API_KEY

Example: your_batchservice_api_key

MCP Server Configuration

Add this to your claude_desktop_config.json or Cursor MCP settings.

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