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: 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 文件。
Available Tools
6 toolscreate_issueC
创建新的工作项
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | 事项描述 | |
| name | Yes | 事项标题 | |
| priority | Yes | 优先级,可选值为:0 - 低 1 - 中 2 - 高 3 - 紧急 | |
| projectName | Yes | 项目名称 | |
| type | Yes | 事项类型,可选值为: DEFECT - 缺陷 REQUIREMENT - 需求 MISSION - 任务 EPIC - 史诗 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. '创建新的工作项' implies a write operation (creation), but it doesn't disclose any behavioral traits such as required permissions, whether the operation is idempotent, what happens on failure, or the expected response format. For a mutation tool with zero annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single phrase '创建新的工作项', which is extremely concise and front-loaded with the core action. There is no wasted language or unnecessary elaboration, making it efficient for quick understanding by an AI agent.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a creation tool with 5 required parameters, no annotations, and no output schema, the description is incomplete. It doesn't explain the return values, error conditions, or behavioral aspects like side effects. While the schema covers parameters well, the overall context for safe and effective tool invocation is lacking, especially for a mutation operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds no parameter semantics beyond what the input schema provides. However, schema description coverage is 100%, with all parameters clearly documented in the schema (e.g., 'priority' with optional values, 'type' with enum-like descriptions). This meets the baseline of 3, as the schema does the heavy lifting, but the description doesn't compensate with additional context like default values or usage tips.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description '创建新的工作项' (Create new work item) clearly states the verb 'create' and the resource 'work item', which is specific and unambiguous. It distinguishes from siblings like 'delete_issue' or 'list_issues' by indicating creation rather than deletion or listing. However, it doesn't explicitly differentiate from 'create_project', which creates a different resource type, so it's not a perfect 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an existing project), exclusions, or comparisons to siblings like 'create_project' for creating projects instead of issues, or 'list_issues' for viewing existing ones. This leaves the agent without context for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_projectC
在 CODING DevOps 中创建新项目
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | 项目描述 | |
| displayName | Yes | 项目显示名称,用于展示的项目名称 | |
| name | Yes | 项目标识,用于系统内部标识项目 | |
| projectTemplate | Yes | 项目模版类型 | |
| shared | Yes | 项目可见性设置(0:私有,1:公开),默认不公开 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. While '创建新项目' (create new project) implies a write/mutation operation, the description doesn't disclose any behavioral traits: no information about permissions required, whether creation is reversible, rate limits, error conditions, or what happens after creation. This is a significant gap for a creation tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that states the core purpose without any wasted words. It's appropriately sized for a creation tool and gets straight to the point with no unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a creation tool with 5 parameters, no annotations, and no output schema, the description is insufficient. It doesn't explain what a 'project' represents in CODING DevOps, what happens after creation, error scenarios, or provide any context about the system. The agent would need to guess about the tool's behavior and outcomes based solely on the name and parameter schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 5 parameters thoroughly with descriptions and enums. The description adds no parameter information beyond what's in the schema - it doesn't explain relationships between parameters, provide examples, or add context about how parameters interact. Baseline 3 is appropriate when the schema does all the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('创建新项目' - create new project) and specifies the context ('在 CODING DevOps 中' - in CODING DevOps), which provides a specific verb+resource combination. However, it doesn't differentiate from sibling tools like 'create_issue' or explain what distinguishes a project from other entities in the system.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. There's no mention of prerequisites, when to choose this over other creation tools like 'create_issue', or any context about project lifecycle management. The agent must infer usage from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_issueC
删除工作项
| Name | Required | Description | Default |
|---|---|---|---|
| issueCode | Yes | 事项编号 | |
| projectName | Yes | 项目名称 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. '删除' (delete) implies a destructive mutation, but the description doesn't specify whether deletion is permanent, requires specific permissions, has confirmation steps, or what happens to related data. This is inadequate for a destructive operation with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with just three characters in Chinese ('删除工作项'), which translates to 'delete work item'. It's front-loaded with the core action and resource, with zero wasted words. This is appropriate conciseness for a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given this is a destructive mutation tool with no annotations and no output schema, the description is incomplete. It doesn't explain what constitutes successful deletion, error conditions, return values, or system behavior. For a tool that permanently removes data, this level of documentation is insufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both parameters (issueCode and projectName) documented in the schema. The description adds no additional parameter information beyond what the schema provides. According to guidelines, when schema coverage is high (>80%), the baseline score is 3 even with no param info in the description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description '删除工作项' (delete work item) states a clear verb+resource action, but it's vague about what constitutes a 'work item' and doesn't distinguish from sibling tools like delete_project. It's better than a tautology but lacks specificity about the resource being deleted.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided about when to use this tool versus alternatives like delete_project or list_issues. The description doesn't mention prerequisites, conditions for successful deletion, or what happens after deletion. It's a basic statement with no contextual usage information.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_projectB
删除 CODING DevOps 中的指定项目
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | 要删除的项目ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states the tool deletes a project, implying a destructive mutation, but doesn't disclose critical behavioral traits: whether deletion is permanent, if it requires specific permissions, what happens to associated resources, or error conditions. For a destructive tool with zero annotation coverage, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Chinese that directly states the tool's purpose without unnecessary words. It is appropriately sized and front-loaded, with zero waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's destructive nature, lack of annotations, and no output schema, the description is incomplete. It doesn't cover behavioral aspects like irreversibility, permissions, or response format. For a mutation tool with high complexity (deletion), more context is needed to ensure safe and correct usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the single parameter 'projectId' documented in the schema as '要删除的项目ID' (project ID to delete). The description adds no additional parameter semantics beyond this, but with only one parameter and full schema coverage, the baseline is high. No extra value is provided, but the schema suffices.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('删除' meaning delete) and the resource ('CODING DevOps 中的指定项目' meaning specified project in CODING DevOps). It distinguishes from siblings like 'delete_issue' by specifying the resource type. However, it doesn't explicitly contrast with other project-related tools like 'create_project' or 'list_projects'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., project must exist), consequences (e.g., irreversible deletion), or when to choose 'delete_project' over other project operations like 'list_projects' for verification. The context is implied but not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_issuesC
查询我最近更新的工作项,可以根据其中IssueType查询,默认查询limit为20条
| Name | Required | Description | Default |
|---|---|---|---|
| issueType | No | 事项类型,可选值为: ALL - 全部事项 DEFECT - 缺陷 REQUIREMENT - 需求 MISSION - 任务 EPIC - 史诗 | |
| limit | No | 事项数量,默认为20条 | |
| projectName | Yes | 项目名称 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It implies a read-only operation ('查询' means query) and mentions a default limit, but fails to detail critical aspects such as authentication needs, rate limits, pagination behavior, or what 'recently updated' means (e.g., time frame). This leaves significant gaps for a tool with multiple parameters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded, stating the core purpose in the first clause. It uses two sentences efficiently to cover filtering and the default limit, with no wasted words. However, it could be slightly more structured by explicitly separating purpose from parameters.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (3 parameters, no annotations, no output schema), the description is incomplete. It lacks details on behavioral traits (e.g., authentication, error handling), output format, and comprehensive usage guidelines. While the schema covers parameters, the overall context for effective tool invocation is insufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters (issueType, limit, projectName) with descriptions and required status. The description adds marginal value by reiterating the default limit and filtering capability, but doesn't provide additional syntax, format details, or contextual meaning beyond what's in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '查询我最近更新的工作项' (query my recently updated work items). It specifies the verb (query) and resource (recently updated work items), making the function understandable. However, it doesn't explicitly differentiate from siblings like 'list_projects' or 'create_issue', which would require a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides minimal guidance: it mentions filtering by IssueType and a default limit of 20, but offers no explicit advice on when to use this tool versus alternatives like 'list_projects' or 'create_issue'. There's no mention of prerequisites, exclusions, or comparative contexts, leaving usage ambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_projectsC
查询当前用户在 CODING DevOps 中的项目列表
| Name | Required | Description | Default |
|---|---|---|---|
| projectName | No | 项目名称,支持模糊匹配 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool queries project lists, implying a read-only operation, but doesn't disclose any behavioral traits such as authentication requirements, rate limits, pagination, error handling, or what the return format looks like (e.g., list structure, fields included). For a tool with no annotation coverage, this leaves significant gaps in understanding how it behaves beyond basic purpose.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any wasted words. It is appropriately sized and front-loaded, making it easy to parse quickly. Every part of the sentence contributes essential information (verb, resource, scope), earning its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (a query operation with 1 parameter), lack of annotations, and no output schema, the description is incomplete. It covers the basic purpose but fails to address behavioral aspects (e.g., authentication, response format) or usage guidelines. For a tool with no structured data beyond the input schema, more context is needed to ensure the agent can use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 1 parameter with 100% description coverage ('项目名称,支持模糊匹配' - project name, supports fuzzy matching). The description adds no additional meaning beyond what the schema provides, as it doesn't mention parameters at all. With high schema coverage, the baseline is 3, as the schema adequately documents the parameter, but the description doesn't compensate or enhance understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '查询当前用户在 CODING DevOps 中的项目列表' (Query the current user's project list in CODING DevOps). It specifies the verb '查询' (query) and resource '项目列表' (project list), and identifies the scope as '当前用户' (current user) in 'CODING DevOps'. However, it doesn't explicitly differentiate from sibling tools like 'list_issues' or 'create_project', which would require mentioning it's for listing projects specifically, not issues or creating projects.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'list_issues' (for listing issues) or 'create_project' (for creating projects), nor does it specify prerequisites, exclusions, or contexts for usage. The agent must infer usage from the purpose alone, which is insufficient for optimal tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
v1.0.0- First observed
create_issue - First observed
create_project - First observed
delete_issue - First observed
delete_project - First observed
list_issues - First observed
list_projects
TDQS
Each tool has a clearly distinct purpose targeting either issues or projects with specific CRUD operations. The separation between issue-related tools (create_issue, delete_issue, list_issues) and project-related tools (create_project, delete_project, list_projects) is unambiguous, with no functional overlap that could cause agent confusion.
All tools follow a perfectly consistent verb_noun pattern with snake_case naming. The naming convention is uniform across all six tools (create_issue, create_project, delete_issue, delete_project, list_issues, list_projects), making them predictable and easy for agents to understand and use correctly.
With 6 tools, this server is well-scoped for its DevOps project and issue management domain. Each tool earns its place by providing essential CRUD operations for both resources, avoiding both excessive complexity and insufficient coverage for the apparent scope.
The tool set provides excellent coverage for the core DevOps domain with complete CRUD operations for both issues and projects. The only minor gap is the absence of update operations (update_issue, update_project), which agents might need to work around by deleting and recreating resources, but the surface otherwise supports complete lifecycle management.
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 Connectors
A Model Context Protocol (MCP) server for Selise Blocks Cloud integration
An MCP server that provides access to Testiny projects, test cases and test runs
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…
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.463,142383MIT
- 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.1153-
- AlicenseNot gradedqualityCmaintenanceImplements a Model Context Protocol server for intelligent end-to-end requirement management and development automation, integrating with Feishu project systems.245MIT
- AlicenseNot gradedqualityDmaintenanceProvides a standardized interface for interacting with GitHub's tools and services through the Model Context Protocol, enabling unified API access and compatibility with MCP-compliant tools.1MIT
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