read-mcp-logs
Extract and analyze the latest logs from an MCP server to diagnose and troubleshoot issues by specifying the number of lines and server name for targeted insights.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lines | No | Number of lines to read from the end | |
| serverName | No | Specific server name to filter logs for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"lines": {
"default": 100,
"description": "Number of lines to read from the end",
"type": "number"
},
"serverName": {
"description": "Specific server name to filter logs for",
"type": "string"
}
},
"type": "object"
}