Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Trae CN AI IDE integration. Provides commands to launch Trae, create projects, run MCP servers, and manage AI coding workflows. Use when user needs AI programming assistance, wants to launch Trae IDE, or needs to create/manage AI coding projects. --- name: trae-cn description: Trae CN AI IDE integration. Provides commands to launch Trae, create projects, run MCP servers, and manage AI coding workflows. Use when user needs AI programming assistance, wants to launch Trae IDE, or needs to create/manage AI coding projects. --- Trae CN AI IDE 集成 Trae 是字节跳动推出的 AI 原生集成开发环境(AI IDE),与 AI 深度集成,提供智能问答、代码自动补全以及基于 Agent 的 AI 自动编程能力。 快速开始 启动 Trae IDE Trae SOLO 模式 Trae 的 SO Capability contract not published. No trust telemetry is available yet. 5 GitHub stars reported by the source. Last updated 4/14/2026.
Freshness
Last checked 4/14/2026
Best For
trae-cn is best for general automation workflows where MCP and OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Trae CN AI IDE integration. Provides commands to launch Trae, create projects, run MCP servers, and manage AI coding workflows. Use when user needs AI programming assistance, wants to launch Trae IDE, or needs to create/manage AI coding projects. --- name: trae-cn description: Trae CN AI IDE integration. Provides commands to launch Trae, create projects, run MCP servers, and manage AI coding workflows. Use when user needs AI programming assistance, wants to launch Trae IDE, or needs to create/manage AI coding projects. --- Trae CN AI IDE 集成 Trae 是字节跳动推出的 AI 原生集成开发环境(AI IDE),与 AI 深度集成,提供智能问答、代码自动补全以及基于 Agent 的 AI 自动编程能力。 快速开始 启动 Trae IDE Trae SOLO 模式 Trae 的 SO
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 14, 2026
Capability contract not published. No trust telemetry is available yet. 5 GitHub stars reported by the source. Last updated 4/14/2026.
Trust score
Unknown
Compatibility
MCP, OpenClaw
Freshness
Apr 14, 2026
Vendor
Urwlee
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 5 GitHub stars reported by the source. Last updated 4/14/2026.
Setup snapshot
git clone https://github.com/UrwLee/skill-trae-cn.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Urwlee
Protocol compatibility
MCP, OpenClaw
Adoption signal
5 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
# 使用 Homebrew 启动 brew services start trae-cn # 或者直接启动应用 open -a "Trae"
bash
# 进入项目目录后启动 Solo 模式 cd your-project trae solo --task "帮我优化这个函数的性能"
bash
# 安装 MCP Server npm install -g @modelcontextprotocol/server-filesystem # 配置到 Trae trae config add-mcp @modelcontextprotocol/server-filesystem
bash
# 启动 Agent trae agent --task "创建一个 React 组件,包含表单验证功能" # 带上下文 trae agent --task "分析这个项目的架构" --context ./project
bash
# 创建新项目 trae create --template react my-project # 打开项目 trae open ./my-project # 克隆并打开项目 trae clone https://github.com/user/repo.git
bash
# 代码生成 trae generate --prompt "创建一个用户登录组件" # 代码重构 trae refactor --file ./src/App.tsx --task "将类组件改为函数组件" # 代码审查 trae review --file ./src/utils.ts
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Trae CN AI IDE integration. Provides commands to launch Trae, create projects, run MCP servers, and manage AI coding workflows. Use when user needs AI programming assistance, wants to launch Trae IDE, or needs to create/manage AI coding projects. --- name: trae-cn description: Trae CN AI IDE integration. Provides commands to launch Trae, create projects, run MCP servers, and manage AI coding workflows. Use when user needs AI programming assistance, wants to launch Trae IDE, or needs to create/manage AI coding projects. --- Trae CN AI IDE 集成 Trae 是字节跳动推出的 AI 原生集成开发环境(AI IDE),与 AI 深度集成,提供智能问答、代码自动补全以及基于 Agent 的 AI 自动编程能力。 快速开始 启动 Trae IDE Trae SOLO 模式 Trae 的 SO
Trae 是字节跳动推出的 AI 原生集成开发环境(AI IDE),与 AI 深度集成,提供智能问答、代码自动补全以及基于 Agent 的 AI 自动编程能力。
# 使用 Homebrew 启动
brew services start trae-cn
# 或者直接启动应用
open -a "Trae"
Trae 的 SOLO 模式能够理解开发者需求,自动执行编程任务:
# 进入项目目录后启动 Solo 模式
cd your-project
trae solo --task "帮我优化这个函数的性能"
MCP 是一种让 AI 工具能够理解和访问外部知识库或服务的协议。
在 Trae 中配置 MCP:
Trae 内置了常用 MCP Server:
# 安装 MCP Server
npm install -g @modelcontextprotocol/server-filesystem
# 配置到 Trae
trae config add-mcp @modelcontextprotocol/server-filesystem
使用 Agent 模式让 AI 自动完成复杂任务:
# 启动 Agent
trae agent --task "创建一个 React 组件,包含表单验证功能"
# 带上下文
trae agent --task "分析这个项目的架构" --context ./project
# 创建新项目
trae create --template react my-project
# 打开项目
trae open ./my-project
# 克隆并打开项目
trae clone https://github.com/user/repo.git
# 代码生成
trae generate --prompt "创建一个用户登录组件"
# 代码重构
trae refactor --file ./src/App.tsx --task "将类组件改为函数组件"
# 代码审查
trae review --file ./src/utils.ts
# 启动对话
trae chat
# 带系统提示
trae chat --system "你是一个 Python 专家"
# 引用代码对话
trae chat --file ./script.py "解释这段代码"
# 列出已配置的 MCP Server
trae mcp list
# 添加 MCP Server
trae mcp add filesystem -- npx @modelcontextprotocol/server-filesystem ./projects
# 移除 MCP Server
trae mcp remove filesystem
在 OpenClaw 中可以通过 MCP 协议调用 Trae:
# Python 示例:使用 Trae MCP Server
import requests
# 调用 Trae MCP 文件系统操作
response = requests.post(
"http://localhost:3000/mcp/file",
json={
"action": "read",
"path": "./src/App.tsx"
}
)
使用 OpenClaw 的 trae-cn Skill:
# 在 OpenClaw 中使用
@trae-cn help
# 创建项目
@trae-cn create-project --name my-app --template react
# 运行代码生成
@trae-cn generate --prompt "创建一个登录表单"
# API Key 配置
export TRAE_API_KEY="your-api-key"
# 模型选择
export TRAE_MODEL="deepseek-v3" # 默认
# 或 claude-sonnet, gpt-4
# MCP Server 默认路径
export TRAE_MCP_PATH="./mcp-servers"
Trae 配置文件位于 ~/.trae/config.json:
{
"model": {
"provider": "deepseek",
"model": "deepseek-v3",
"temperature": 0.7
},
"mcp": {
"enabled": true,
"servers": ["filesystem", "database"]
},
"theme": "dark",
"shortcuts": {
"chat": "cmd+shift+l",
"generate": "cmd+shift+g"
}
}
# 1. 创建项目
trae create --template nextjs my-saas
# 2. 进入项目
cd my-saas
# 3. 启动开发
trae dev
# 4. AI 生成代码
trae generate --prompt "创建一个用户仪表盘页面"
# 1. 打开项目
trae open ./my-project
# 2. AI 审查代码
trae review --file ./src/critical.ts
# 3. AI 优化
trae refactor --file ./src/critical.ts --task "性能优化"
# 1. 配置 MCP Server
trae mcp add weather -- npx @modelcontextprotocol/server-weather
# 2. 在对话中使用
trae chat "北京今天天气怎么样?"
# 1. 克隆项目
trae clone https://github.com/team/project.git
# 2. 设置上下文
trae context set ./project-docs
# 3. AI 理解项目
trae chat "根据项目文档,帮我生成 API 文档"
Q: Trae 和 VS Code 有什么区别? A: Trae 是原生 AI IDE,与 AI 深度集成,支持 Agent 模式和 MCP 协议,比 VS Code 有更强的 AI 能力。
Q: Trae 支持哪些编程语言? A: 支持所有主流语言,包括 Python、JavaScript/TypeScript、Go、Rust、Java、C++ 等。
Q: 如何配置自定义 MCP Server? A: 参考官方文档:https://docs.trae.com.cn/ide/model-context-protocol
Q: Trae 免费吗? A: Trae 提供免费版和专业版,免费版包含基础 AI 功能,专业版提供更多高级功能。
Q: 如何切换 AI 模型?
A: 在设置中配置或使用环境变量 TRAE_MODEL
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/urwlee-skill-trae-cn/snapshot"
curl -s "https://xpersona.co/api/v1/agents/urwlee-skill-trae-cn/contract"
curl -s "https://xpersona.co/api/v1/agents/urwlee-skill-trae-cn/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/urwlee-skill-trae-cn/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/urwlee-skill-trae-cn/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/urwlee-skill-trae-cn/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/urwlee-skill-trae-cn/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/urwlee-skill-trae-cn/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/urwlee-skill-trae-cn/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP",
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T00:50:50.313Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Urwlee",
"href": "https://github.com/UrwLee/skill-trae-cn",
"sourceUrl": "https://github.com/UrwLee/skill-trae-cn",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:23:23.875Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP, OpenClaw",
"href": "https://xpersona.co/api/v1/agents/urwlee-skill-trae-cn/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/urwlee-skill-trae-cn/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-14T22:23:23.875Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "5 GitHub stars",
"href": "https://github.com/UrwLee/skill-trae-cn",
"sourceUrl": "https://github.com/UrwLee/skill-trae-cn",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:23:23.875Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/urwlee-skill-trae-cn/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/urwlee-skill-trae-cn/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to trae-cn and adjacent AI workflows.