loading…
Search for a command to run...
loading…
Enables LLMs to explore and analyze UK Government BEIS inspect_ai evaluation logs directly from tools like Claude Code and Cursor. It provides capabilities to l
Enables LLMs to explore and analyze UK Government BEIS inspect_ai evaluation logs directly from tools like Claude Code and Cursor. It provides capabilities to list logs, view evaluation summaries, and inspect conversation histories for specific samples.
MCP server for exploring inspect_ai evaluation logs from Claude Code.
This MCP server gives Claude Code, Cursor, and other LLMs direct access to your inspect_ai evaluation logs, allowing you to:
Currently only source installation is supported.
git clone https://github.com/PranshuSrivastava/inspect-logs-mcp.git
cd inspect-logs-mcp
pip install -e .
To use with Claude code in your current directory, run the following command:
claude mcp add --transport stdio inspect-logs inspect-logs-mcp
To use with Claude code in your global configuration, run the following command:
claude mcp add --scope user --transport stdio inspect-logs inspect-logs-mcp
To use with Cursor, Antigravity or other IDEs, add the following to your mcp config file:
{
"mcpServers": {
"inspect-logs": {
"command": "inspect-logs-mcp",
"env": {
"INSPECT_LOG_DIR": "./logs"
}
}
}
}
| Variable | Description | Default |
|---|---|---|
INSPECT_LOG_DIR |
Directory containing .eval log files |
./logs |
INSPECT_LOGS_MCP_DEFAULT_LIMIT |
Default number of logs limit | 50 |
INSPECT_LOGS_MCP_MAX_LIMIT |
Maximum number of logs limit | 500 |
The server reads .eval files (which are ZIP archives containing JSON) using the inspect_ai.log API. All file operations happen in memory - no files are extracted to disk, so your logs directory stays clean.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"inspect-logs-mcp": {
"command": "npx",
"args": []
}
}
}