start_server
Start a development server or background process and capture its output for real-time debugging and inspection.
Instructions
Start a dev server or background process and capture its output
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Unique identifier for this server (e.g. 'dev', 'api') | |
| cwd | No | Working directory for the command (defaults to server's cwd) | |
| env | No | Additional environment variables | |
| args | No | Command arguments (e.g. ['run', 'dev']) | |
| command | Yes | Command to run (e.g. 'npm', 'npx', 'make') | |
| urlPattern | No | Optional URL substring to connect to after server start (e.g. localhost:5173) | |
| connectWaitForMs | No | How long to wait for urlPattern target to appear |