CODING DevOps

coding_devops_mcp_server
  • typescript

1

GitHub Stars

typescript

Language

4 months ago

First Indexed

3 weeks ago

Catalog Refreshed

Documentation & install

Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.

Installation

Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "yupengfei1209-coding_devops_mcp_server": {
      "command": "node",
      "args": [
        "/your_path/coding_devops_mcp_server/build/index.js"
      ],
      "env": {
        "PROJECT": "default project",
        "CODING_TOKEN": "coding-token"
      }
    }
  }
}

You can run the CODING DevOps MCP Server to manage CODING DevOps projects and work items through a standardized MCP interface. This server exposes project and issue management capabilities you can access from an MCP client, enabling streamlined interactions with CODING DevOps data.

How to use

Connect your MCP client to the CODING DevOps MCP Server to manage your CODING projects and work items. You will authenticate with a personal access token and optionally select a default project. Once connected, you can list accessible projects, search by project name, create new work items, list existing ones, and delete them. Use the client’s standard MCP workflow to invoke the available operations.

How to install

Prerequisites: Node.js and npm must be installed on your system.

Step by step commands to set up the MCP server locally:

# Clone the MCP server repository
git clone https://github.com/yupengfei1209/coding_devops_mcp_server.git
cd coding_devops_mcp_server

# Install dependencies
npm install

# Build the server
npm run build

Configuration and usage notes

The server expects an authentication token and an optional default project. You will configure these values in the MCP client configuration that launches the server process.

The following MCP JSON configuration shows how to register this server for use by your MCP client. It uses a local stdio-based runtime that launches the built index.js file.

{
  "mcpServers": {
    "coding-devops": {
      "command": "node",
      "args": [
        "/your_path/coding_devops_mcp_server/build/index.js"
      ],
      "env": {
        "CODING_TOKEN": "coding-token",
        "PROJECT": "default project" // 默认项目,可选配置
      },
      "disabled": false,
      "autoApprove": []
    },
  }
}

Project and work item management endpoints

The server exposes functions to list projects, list work items, create work items, and delete work items with configurable parameters. You can tailor these operations by providing optional filters like project name, issue type, and sorting preferences when listing items.

Developer notes

Project structure and development workflow are described in the source code layout under src/. This includes API implementations, configuration helpers, tooling for issues and projects, error handling, and the main entry point.

Available tools

list_projects

Lists projects you can access, with optional filtering by project name.

list_work_items

Lists work items for a given project with optional filters such as type, limit, offset, and sorting options.

create_work_item

Creates a new work item under a specified project with details like name, type, priority, and description.

delete_work_item

Deletes a specific work item by its code within a given project.

Built by
VeilStrat
AI signals for GTM teams
© 2026 VeilStrat. All rights reserved.All systems operational