BatchService Claude Desktop Config
Add the BatchService 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-batch-batchservice": {
"command": "npx",
"args": [
"-y",
"@mcp/azure-com-batch-batchservice"
],
"env": {
"BATCHSERVICE_API_KEY": "your_batchservice_api_key"
}
}
}
}Environment Variables
BATCHSERVICE_API_KEYReplace your_batchservice_api_key with your actual batchservice api key
Endpoints
GET
/applicationsLists all of the applications available in the specified account.
GET
/applications/{applicationId}Gets information about the specified application.
GET
/certificatesLists all of the certificates that have been added to the specified account.
POST
/certificatesAdds 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})/canceldeleteCancels a failed deletion of a certificate from the specified account.
GET
/jobsLists all of the jobs in the specified account.
POST
/jobsAdds a job to the specified account.
GET
/jobs/{jobId}Gets information about the specified job.