Interact with the CODING DevOps platform for managing projects and work items.
CODING DevOps MCP Server 是一个基于 Model Context Protocol (MCP) 的服务器实现,用于与 CODING DevOps 平台进行交互。它提供了一套标准化的接口,使得用户可以方便地管理 CODING 平台上的项目和工作项。
git clone https://github.com/yupengfei1209/coding_devops_mcp_server.git
cd coding_devops_mcp_server
npm install
npm run build
服务器需要以下配置项:
{
"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 文件。
Bootstrap Model Context Protocol (MCP) servers and clients in TypeScript with best practices, examples, and proper tooling setup.
MCP Server for PGYER platform, supports uploading, querying apps, etc.
Fetches comprehensive information about Composer packages from Packagist, including READMEs, metadata, and search functionality.
Interact with the Unstructured API to manage data sources, destinations, workflows, and jobs.
Interact with Juspay APIs for payment processing and merchant dashboard management.
A universal control plane for managing MCP servers and providing intelligent tool discovery for AI agents.
Integrates the Korea Meteorological Administration's public weather API to provide climate data.
A MCP Server that enhance your IDE with AI-powered assistance for Intlayer i18n / CMS tool: smart CLI access, versioned docs.
A template for creating MCP (ModelContextProvider) servers, configurable via environment variables.
An MCP server for the Arduino CLI, offering tools to manage sketches, boards, libraries, and files.