원클릭으로
skill-server-start
Start or register local app/dev servers through the servers CLI/MCP with locks, readiness checks, logs, and agent traces.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Start or register local app/dev servers through the servers CLI/MCP with locks, readiness checks, logs, and agent traces.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Debug local app/dev server lifecycle problems with servers CLI/MCP status, logs, operations, traces, and lock evidence.
Restart local app/dev servers safely through the servers CLI/MCP using lifecycle locks, readiness waits, and operation traces.
| name | skill-server-start |
| description | Start or register local app/dev servers through the servers CLI/MCP with locks, readiness checks, logs, and agent traces. |
| user_invocable | true |
Use this when a repo needs a dev/app server started, registered, or made reachable for agents.
mcp__servers__init_local_server, mcp__servers__start_local_server, and mcp__servers__get_local_server_status.servers servers:init, servers servers:start, servers servers:status, servers servers:logs, and servers servers:debug.bun run dev &, npm run dev &, nohup, or unmanaged tmux panes.0.0.0.0 and record the port. Use http://<machine>:<port> or the computed Tailscale URL.--agent <name> and --reason <why> so operations and traces explain who touched the server.Verify the installed surface:
servers --version
servers-mcp --version
servers --help | grep 'servers:start'
Register or update the app server:
servers servers:init --name <slug> --path . --command '<start command>' --port <port> --force
If the command serves other machines, include the app's host flag, for example bun run dev --host 0.0.0.0.
Start through the lifecycle lock:
servers servers:start <slug> --agent <agent> --reason '<reason>' --timeout 60000
Confirm readiness and record the observed status:
servers servers:status <slug> --refresh
If start fails, inspect before changing anything:
servers servers:debug <slug>
servers servers:logs <slug> --lines 120
The server is registered, servers servers:status <slug> --refresh reports ready/online, the command/port/log path are visible in servers servers:debug, and no unmanaged duplicate process was started.