一键导入
mcp
Manage MCP (Model Context Protocol) servers — list configured tools, check status, show invocation format, or add a new server to .vscode/mcp.json.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage MCP (Model Context Protocol) servers — list configured tools, check status, show invocation format, or add a new server to .vscode/mcp.json.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build the project and verify it compiles cleanly. Use after making changes to confirm nothing is broken before running tests. Reads the build command from context/build.md.
Auto-configure .github/copilot-instructions.md and context/ knowledge docs for a new project. Use when setting up Brain Bootstrap in a new repository. Discovers the codebase, fills in templates, and writes project-specific configuration.
Save session state before context gets full or before ending. Writes current task state, branch, and loaded docs to context/tasks/todo.md so the next session can resume cleanly.
Clean workspace — build artifacts, dependencies, caches, Docker volumes, or temp files. Accepts arguments like build, deps, all, cache, docker, tasks, reinstall.
Load all relevant context/ knowledge files for a domain area. Use at session start or when switching to a new topic. Accepts a domain keyword like api, database, auth, build, security.
Query the database — list schemas, tables, describe a table, or run SQL. Accepts arguments like schemas, tables, describe <table>, or raw SQL.
| name | mcp |
| description | Manage MCP (Model Context Protocol) servers — list configured tools, check status, show invocation format, or add a new server to .vscode/mcp.json. |
Manage Model Context Protocol (MCP) servers for this project.
/mcp # List configured servers + invocation format
/mcp status # Check which tool binaries are installed
/mcp add <server> # Add a new MCP server
/mcp format # Show all tool invocation strings
mcp__SERVER_KEY__TOOL_FUNCTION_NAME
Where SERVER_KEY is the server key in .vscode/mcp.json under servers.*.
list or empty:.vscode/mcp.json — show currently configured servers and invocation formatscontext/architecture.mdstatus:command -v uvx &>/dev/null && echo "uvx: ✅" || echo "uvx: ❌ missing — install via: pip install uv"
command -v npx &>/dev/null && echo "npx: ✅" || echo "npx: ⚠️ missing — install Node.js"
command -v ccc &>/dev/null && echo "cocoindex CLI (ccc): ✅" || echo "cocoindex CLI: ⚠️ optional — install via: pip install cocoindex"
# uvx-based tools (codebase-memory, code-review-graph, serena, cocoindex-code) are available when uvx is installed
add <server-name>:.vscode/mcp.json under servers.<name>.github/copilot-instructions.md — add to Plugin Ecosystem sectionformat:Show all available MCP tool invocations from .vscode/mcp.json.
| MCP Server Key | Binary | Invocation prefix |
|---|---|---|
codebase-memory | uvx codebase-memory-mcp@latest | mcp__codebase-memory__ |
cocoindex-code | uvx cocoindex-code-mcp-server@latest | mcp__cocoindex-code__ |
code-review-graph | uvx code-review-graph@latest | mcp__code-review-graph__ |
serena | uvx serena@latest | mcp__serena__ |
playwright | npx @playwright/mcp@latest | mcp__playwright__ |
{
"servers": {
"github": {
"command": "npx",
"args": ["-y", "@github/mcp-server"],
"env": { "GITHUB_TOKEN": "${GITHUB_TOKEN}" }
},
"figma": {
"url": "https://mcp.figma.com/mcp",
"headers": { "Authorization": "Bearer ${FIGMA_OAUTH_TOKEN}" }
}
}
}
"${MY_TOKEN}"