get_dev_logs
Retrieve npm run dev
logs for monitoring and debugging purposes, with configurable line count up to 1000. Part of the npm-dev-mcp server managing npm processes and logs automatically.
Instructions
npm run devのログ取得
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lines | No | 取得行数(デフォルト:50) |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"lines": {
"description": "取得行数(デフォルト:50)",
"maximum": 1000,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}