CODING DevOps MCP Server
Provides integration with CODING DevOps platform, allowing management of projects and work items (issues) including listing, searching, creating, and deleting issues with support for setting issue attributes like type and priority.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@CODING DevOps MCP Serverlist work items for project 'web-app' with high priority"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
CODING DevOps MCP Server
CODING DevOps MCP Server 是一个基于 Model Context Protocol (MCP) 的服务器实现,用于与 CODING DevOps 平台进行交互。它提供了一套标准化的接口,使得用户可以方便地管理 CODING 平台上的项目和工作项。
功能特性
项目管理
列出用户可访问的项目
按项目名称搜索项目
工作项(Issues)管理
创建工作项
列出工作项
删除工作项
支持工作项类型、优先级等属性设置
Related MCP server: Opik MCP Server
安装
Clone this repository:
git clone https://github.com/yupengfei1209/coding_devops_mcp_server.git
cd coding_devops_mcp_serverInstall dependencies:
npm installBuild the server:
npm run build配置
服务器需要以下配置项:
CODING Personal Access Token (必需)
项目名称 (可选)
添加到 MCP Client
{
"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": []
},
}
}功能
项目管理
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 文件。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceA Model Context Protocol server that enables AI assistants to interact with Azure DevOps resources including projects, work items, repositories, pull requests, branches, and pipelines through a standardized protocol.Last updated462,822377MIT
- AlicenseBqualityCmaintenanceAn implementation of the Model Context Protocol for the Opik platform that provides a unified interface for accessing Opik's capabilities, supporting multiple transport mechanisms for flexible integration with IDEs and other environments.Last updated19151215Apache 2.0
- FlicenseBqualityDmaintenanceImplements the Model Context Protocol (MCP) to provide AI models with a standardized interface for connecting to external data sources and tools like file systems, databases, or APIs.Last updated1153
- Alicense-qualityCmaintenanceImplements a Model Context Protocol server for intelligent end-to-end requirement management and development automation, integrating with Feishu project systems.Last updated405MIT
Related MCP Connectors
A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…
MCP (Model Context Protocol) server for Appwrite
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yupengfei1209/coding_devops_mcp_server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server