- Explore MCP Servers
- coding_devops_mcp_server
Coding Devops Mcp Server
What is Coding Devops Mcp Server
The coding_devops_mcp_server is a server implementation based on the Model Context Protocol (MCP) designed for interaction with the CODING DevOps platform. It provides a standardized interface for users to manage projects and work items on the CODING platform.
Use cases
Use cases for coding_devops_mcp_server include managing software development projects, tracking issues and tasks, and automating project workflows within the CODING DevOps ecosystem.
How to use
To use coding_devops_mcp_server, clone the repository, install the dependencies using npm, and build the server. You will need to configure it with a CODING Personal Access Token and optionally a project name. Finally, add it to the MCP Client configuration.
Key features
Key features include project management capabilities such as listing accessible projects and searching by project name, as well as work item management functionalities including creating, listing, and deleting work items with support for various attributes like type and priority.
Where to use
coding_devops_mcp_server can be used in software development environments where project and issue tracking is essential, particularly in teams utilizing the CODING DevOps platform.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Coding Devops Mcp Server
The coding_devops_mcp_server is a server implementation based on the Model Context Protocol (MCP) designed for interaction with the CODING DevOps platform. It provides a standardized interface for users to manage projects and work items on the CODING platform.
Use cases
Use cases for coding_devops_mcp_server include managing software development projects, tracking issues and tasks, and automating project workflows within the CODING DevOps ecosystem.
How to use
To use coding_devops_mcp_server, clone the repository, install the dependencies using npm, and build the server. You will need to configure it with a CODING Personal Access Token and optionally a project name. Finally, add it to the MCP Client configuration.
Key features
Key features include project management capabilities such as listing accessible projects and searching by project name, as well as work item management functionalities including creating, listing, and deleting work items with support for various attributes like type and priority.
Where to use
coding_devops_mcp_server can be used in software development environments where project and issue tracking is essential, particularly in teams utilizing the CODING DevOps platform.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
CODING DevOps MCP Server
CODING DevOps MCP Server 是一个基于 Model Context Protocol (MCP) 的服务器实现,用于与 CODING DevOps 平台进行交互。它提供了一套标准化的接口,使得用户可以方便地管理 CODING 平台上的项目和工作项。
功能特性
- 项目管理
- 列出用户可访问的项目
- 按项目名称搜索项目
- 工作项(Issues)管理
- 创建工作项
- 列出工作项
- 删除工作项
- 支持工作项类型、优先级等属性设置
安装
- Clone this 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
配置
服务器需要以下配置项:
- CODING Personal Access Token (必需)
- 项目名称 (可选)
添加到 MCP Client
功能
项目管理
list_projects: 列出用户可访问的项目// 可选参数 { projectName?: string; // 按项目名称筛选 }
工作项管理
-
list_work_items: 列出工作项// 参数 { projectName: string; issueType?: string; limit?: string; offset?: string; sortKey?: string; sortValue?: string; } -
create_work_item: 创建工作项// 参数 { projectName: string; name: string; type: string; priority: string; description: string; } -
delete_work_item: 删除工作项// 参数 { projectName: string; issueCode: number; }
开发
项目结构
src/ ├── api/ # API 实现 ├── config/ # 配置相关 ├── tools/ # 工具实现 │ ├── issue/ # 工作项相关功能 │ └── project/ # 项目相关功能 ├── errors.ts # 错误定义 └── index.ts # 主入口文件
许可证
本项目采用 MIT 许可证。详见 LICENSE 文件。
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










