원클릭으로
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}"
}
}
}
}