Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/AxGord/claude-workflow --skill mcp-setup명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | mcp-setup |
| description | MCP server setup and troubleshooting |
npm info <name> to verify before installingnpm info → npx -y <pkg> --help → claude mcp add. Caveat: many MCP servers don't implement --help and just wait on stdio — wrap validation in timeout 10 … so it can't hang./mcp can reconnect already-registered servers, but registering a NEW server requires a session restart. Get the config right the first time.claude mcp add <name> -- uvx <pkg> — uvx launches PyPI packages over stdio, no venv management.claude mcp add --transport http <name> <url> (also --transport sse for legacy SSE servers).project scope lives in .mcp.json at the repo root (checked in); local scope lives in ~/.claude.json under that project's entry (NOT in the repo); user scope is global in ~/.claude.json.mcp__plugin_<plugin>_<server>__<tool> — the full name must stay under the 64-char API limit, so keep plugin/server names short.claude mcp list for statusnpm whoami — fix stale token if needednpm info <pkg> deprecated — check if abandoned~/Library/Caches/ms-playwright-mcp/mcp-chrome-* on macOS, ~/.cache/ms-playwright-mcp/mcp-chrome-* on Linux) is locked by a stale SingletonLock symlink (often pointing at an unrelated regular Chrome pid). The MCP server refuses even after browser_close.killing the pid the lock points at (it may be the user's real browser). Stay with ONE browser server per session; alternating between two hits the lock again.