MCP DevOps tasks automation tools
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"MCP.DevOps": {
"args": [
"run",
"--project",
"path/to/MCP.DevOps.csproj"
],
"command": "dotnet"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A comprehensive Model Context Protocol (MCP) Server for automating DevOps operations and deploying applications to various cloud providers and servers. This server enables AI assistants and other MCP clients to perform sophisticated deployment automation, infrastructure management, and application lifecycle operations.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops
MCP server for using the GitLab API
Enhanced MCP server for GitLab: group projects listing and activity tracking
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
MCP server for Komodo - manage Docker containers, servers, stacks, and deployments via AI
MCP Security Weekly
Get CVE alerts and security updates for MCP.DevOps and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A comprehensive Model Context Protocol (MCP) Server for automating DevOps operations and deploying applications to various cloud providers and servers. This server enables AI assistants and other MCP clients to perform sophisticated deployment automation, infrastructure management, and application lifecycle operations.
git clone https://github.com/jihadkhawaja/MCP.DevOps.git
cd MCP.DevOps
dotnet build
dotnet run --project MCP.DevOps
docker build -t mcp-devops .
docker run -it mcp-devops
Add to your Claude Desktop configuration:
{
"mcpServers": {
"MCP.DevOps": {
"command": "dotnet",
"args": ["run", "--project", "path/to/MCP.DevOps.csproj"]
}
}
}
Configure in your MCP settings:
"servers": {
"MCP.DevOps": {
"type": "stdio",
"command": "dotnet",
"args": [
"run",
"--project",
"path/to/MCP.DevOps.csproj"
]
}
}
| Tool | Description | Parameters |
|---|---|---|
GetSystemInfo | Get system information and available tools | - |
ExecuteCommand | Execute shell commands with timeout | command, arguments?, workingDirectory?, timeoutSeconds? |
ListEnvironmentVariables | List environment variables by pattern | pattern? |
GetEnvironmentVariable | Get specific environment variable value | variableName |
| Tool | Description | Parameters |
|---|---|---|
GitClone | Clone a repository | repositoryUrl, targetDirectory?, branch? |
GitStatus | Get repository status | repositoryPath? |
GitInfo | Get branch and commit information | repositoryPath? |
| Tool | Description | Parameters |
|---|---|---|
DotNetBuild | Build .NET project | projectPath, configuration?, framework?, ` |