drio
Open app

MCP Server DevOps Bridge 🚀

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP Server DevOps Bridge is a tool that enables seamless integration and orchestration of various DevOps platforms through natural language commands, allowing users to manage their workflows without switching between different tools.

To use the MCP Server DevOps Bridge, clone the repository from GitHub, configure your environment with the necessary access tokens, and add it to Claude's configuration. You can then interact with your DevOps tools using natural language commands.

  • Natural Language Interface for easy interaction with DevOps tools. - Cross-Platform Integration linking work items, pull requests, and notifications. - Unified Workflow management to reduce context switching. - Flexible Architecture for easy extension with new integrations.
  1. Automating task management across Azure DevOps, GitHub, and Slack.
  2. Streamlining code review processes by linking work items to pull requests.
  3. Generating comprehensive status reports that aggregate data from multiple platforms.
  4. Managing documentation updates and linking them to relevant work items.

Add to your AI client

Use these steps to connect MCP Server DevOps Bridge 🚀 in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-devops-bridge-theapemachine": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-devops-bridge-theapemachine"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-devops-bridge-theapemachine": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-devops-bridge-theapemachine"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-devops-bridge-theapemachine": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-devops-bridge-theapemachine"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-devops-bridge-theapemachine": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-devops-bridge-theapemachine"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-devops-bridge-theapemachine": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-devops-bridge-theapemachine"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-devops-bridge-theapemachine": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-devops-bridge-theapemachine"
      ]
    }
  }
}