一键导入
mcp
Manage MCP (Model Context Protocol) servers — list configured tools, check status, show invocation format, or add a new server to .claude/settings.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 .claude/settings.json.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | mcp |
| description | Manage MCP (Model Context Protocol) servers — list configured tools, check status, show invocation format, or add a new server to .claude/settings.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 .claude/settings.json under mcpServers.*.
list or empty:.claude/settings.json — show currently configured mcpServers entriesclaude/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>:claude mcp add <server-name> -- <command> [args]
claude mcp add context7 -- npx -y @upstash/context7-mcp.claude/settings.json under mcpServers.<name>CLAUDE.md — add to Plugin Ecosystem sectionformat:Show all available MCP tool invocations from .claude/settings.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__ |
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@github/mcp-server"],
"env": { "GITHUB_TOKEN": "YOUR_GITHUB_TOKEN_HERE" }
},
"figma": {
"url": "https://mcp.figma.com/mcp",
"headers": { "Authorization": "Bearer YOUR_FIGMA_TOKEN_HERE" }
}
}
}
"YOUR_KEY_HERE"Route a codebase question to the right tool — structural graph, semantic search, or risk analysis. Use when you need to find or understand code without knowing exact file names.
Auto-configure CLAUDE.md and claude/ 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.
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 claude/build.md.
Save session state before context gets full or before ending. Writes current task state, branch, and loaded docs to claude/tasks/todo.md so the next session can resume cleanly.
Remove all git worktrees for merged branches. Accepts --dry-run to preview. Use after merging PRs or for weekly maintenance.
Clean workspace — build artifacts, dependencies, caches, Docker volumes, or temp files. Accepts arguments like build, deps, all, cache, docker, tasks, reinstall.