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 文件。
MCP server for interacting with the Godot game engine, providing tools for editing, running, debugging, and managing scenes in Godot projects.
Manage ServiceNow metadata, modules, records, and tests using Fluent, a TypeScript-based declarative DSL. Supports all ServiceNow SDK CLI commands.
Provides tools for geospatial analysis within Jupyter notebooks.
The ultimate open-source server for advanced Gemini API interaction with MCP, intelligently selects models.
A FastAPI-based gateway for the Model Context Protocol (MCP) designed to unify and scale AI toolchains.
Enable AI Agents to fix build failures from CircleCI.
ComputerVision-based 🪄 sorcery of image recognition and editing tools for AI assistants.
Interact with various build systems including Gradle, Maven, NPM/Yarn, Cargo, Python, Makefile, and CMake.
Provides multi-cluster Kubernetes management and operations using MCP, featuring a management interface, logging, and nearly 50 built-in tools covering common DevOps and development scenarios. Supports both standard and CRD resources.
A specialized MCP gateway for LLM enhancement prompts and jailbreaks with dynamic schema adaptation. Provides prompts for different LLMs using an enum-based approach.