بنقرة واحدة
mcp-setup
Help users configure MCP (Model Context Protocol) servers for Claude Code and other AI platforms.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Help users configure MCP (Model Context Protocol) servers for Claude Code and other AI platforms.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Agent Skills Package Manager - Install once, use everywhere. Manage, share, and sync AI agent skills across platforms.
程式碼審查,包裝 PAL MCP 的 codereview 功能
除錯輔助,包裝 PAL MCP 的 debug 功能,提供系統化問題診斷
Git 操作輔助,提供 commit message 規範、分支策略與 PR 指引
在檢查點驗證目標和方向,避免偏離軌道
將任務拆解為可執行的 Milestones,支援 PDCA 循環規劃
| name | mcp-setup |
| description | Help users configure MCP (Model Context Protocol) servers for Claude Code and other AI platforms. |
| version | 0.4.0 |
Help users install and configure MCP (Model Context Protocol) servers for AI platforms.
MCP servers are configured in ~/.claude.json:
{
"mcpServers": {
"server-name": {
"command": "npx",
"args": ["-y", "package-name"],
"env": {
"API_KEY": "your-api-key"
}
}
}
}
{
"mcpServers": {
"skillpkg": {
"command": "npx",
"args": ["-y", "skillpkg-mcp-server"]
}
}
}
Tools: list_skills, install_skill, search_skills, load_skill, sync_skills
{
"mcpServers": {
"context7": {
"command": "npx",
"args": ["-y", "@context7/mcp-server"]
}
}
}
Tools: resolve-library-id, query-docs
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-filesystem", "/path/to/allowed/dir"]
}
}
}
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-github"],
"env": {
"GITHUB_TOKEN": "${GITHUB_TOKEN}"
}
}
}
}
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-brave-search"],
"env": {
"BRAVE_API_KEY": "${BRAVE_API_KEY}"
}
}
}
}
# View current config
cat ~/.claude.json
# Edit config (macOS)
open -e ~/.claude.json
# Edit config (with VS Code)
code ~/.claude.json
# Validate JSON
cat ~/.claude.json | python3 -m json.tool
~/.claude.json under mcpServers~/.claude.json is readablechmod 644 ~/.claude.jsonUse ${VAR_NAME} syntax in config:
{
"env": {
"API_KEY": "${MY_API_KEY}"
}
}
Set in shell:
export MY_API_KEY="your-key"
{
"mcpServers": {
"skillpkg": {
"command": "npx",
"args": ["-y", "skillpkg-mcp-server"]
},
"context7": {
"command": "npx",
"args": ["-y", "@context7/mcp-server"]
},
"github": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-github"],
"env": {
"GITHUB_TOKEN": "${GITHUB_TOKEN}"
}
}
}
}