create_project
Set up new projects in CODING DevOps by defining names, descriptions, templates, and visibility settings through standardized MCP server interactions.
Instructions
在 CODING DevOps 中创建新项目
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | 项目描述 | |
displayName | Yes | 项目显示名称,用于展示的项目名称 | |
name | Yes | 项目标识,用于系统内部标识项目 | |
projectTemplate | Yes | 项目模版类型 | |
shared | Yes | 项目可见性设置(0:私有,1:公开),默认不公开 |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "项目描述",
"type": "string"
},
"displayName": {
"description": "项目显示名称,用于展示的项目名称",
"type": "string"
},
"name": {
"description": "项目标识,用于系统内部标识项目",
"type": "string"
},
"projectTemplate": {
"description": "项目模版类型",
"enum": [
"DEV_OPS",
"DEMO_BEGIN",
"CHOICE_DEMAND",
"PROJECT_MANAGE",
"CODE_HOST"
],
"type": "string"
},
"shared": {
"description": "项目可见性设置(0:私有,1:公开),默认不公开",
"enum": [
"0",
"1"
],
"type": "string"
}
},
"required": [
"name",
"displayName",
"projectTemplate",
"shared"
],
"type": "object"
}