Inspector V2 Tech Stack - Server
July 2, 2026 · View on GitHub
Brief | V1 Problems | V2 Scope | V2 Tech Stack | V2 UX | V2 Auth | V2 New Spec Impact
Web Client | CLI, TUI, Launcher | Server | Storage
Overview
Language and Runtime
- Typescript
- Node
Transport Operation
Let's consider how to operate the server transports.
Hono Rationale
Hono is selected based on community consensus (PR #945 discussion) for alignment with modern web standards and the TypeScript SDK v2 direction.
Why Hono over Express:
| Requirement | Hono | Express |
|---|---|---|
| Bundle size | 12kb | ~1mb |
| Web Standards (Request/Response) | Yes - Native | No - Shimmed |
| TypeScript native | Yes | No - @types package |
| Tree-shakable | Yes - Fully | No |
| HTTP/2 support | Yes | No (SPDY dropped) |
| Built-in middleware | Yes - Body parsing, auth, etc. | No - Requires plugins |
| Edge/serverless deployment | Yes - Native | Partial - Requires adapters |
Benefits:
- Web Standards Alignment - Uses native
Request/Responseobjects, enabling deployment across Node, Deno, Bun, serverless, and edge environments - TypeScript Native - Full type safety without external type packages, no monkey-patching of request objects
- Future-proofing - HTTP/2 support enables potential gRPC transport; aligns with TypeScript SDK v2 plans
- Developer Experience - Simpler API, type-safe context, smaller learning curve
- Bundle Efficiency - Dramatically smaller footprint benefits both development and deployment
Logging
Let's step up our logging capability with an advanced logger:
Pino Rationale
Pino is selected for synergy with the History Screen feature. The log file serves dual purposes:
- Server diagnostics - Standard application logging
- History persistence - Request/response replay source
Why Pino over Winston:
| Requirement | Pino | Winston |
|---|---|---|
| Default JSON format | Yes - NDJSON | No - Text (needs config) |
| Line-by-line parsing | Yes - Native | No - Extra work |
| High-throughput logging | Yes - Very fast | Partial - Slower |
| Log rotation | Yes - pino-roll | Yes - winston-daily-rotate |
| Dev-friendly output | Yes - pino-pretty | Yes - Built-in |
Architecture:
┌─────────────────────────────────────────────────────────────────┐
│ Server │
│ │
│ MCP Request ──▶ Pino Logger ──┬──▶ history.ndjson (file) │
│ │ │
│ └──▶ Console (pino-pretty) │
│ │
│ History API: GET /api/history?method=tools/call&limit=50 │
│ (parses history.ndjson, returns filtered JSON) │
└─────────────────────────────────────────────────────────────────┘
Log Entry Schema:
Each MCP operation logs a request/response pair:
{"ts":1732987200000,"level":"info","type":"mcp_request","method":"tools/call","target":"echo","params":{"message":"hello"},"requestId":"abc123","serverId":"my-server"}
{"ts":1732987200045,"level":"info","type":"mcp_response","requestId":"abc123","result":{"content":[{"type":"text","text":"hello"}]},"duration":45,"success":true}
Schema fields:
| Field | Description |
|---|---|
ts | Unix timestamp (ms) |
level | Log level (info, error) |
type | mcp_request or mcp_response |
method | MCP method (tools/call, resources/read, prompts/get, etc.) |
target | Tool name, resource URI, or prompt name |
params | Request parameters |
requestId | Correlation ID linking request to response |
serverId | Server identifier |
result | Response data (for mcp_response) |
error | Error message (for failed requests) |
duration | Response time in ms |
success | Boolean success indicator |
Dependencies:
pino- Core loggerpino-pretty- Dev console formattingpino-roll- Log rotation (optional)pino-http- Express integration