izlek
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@izlekWhat are the recent errors from the dev session?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
izlek
izlek is a terminal-first local frontend observability tool for humans and coding agents. It starts a development project against a named backend environment, captures bounded process logs and proxied HTTP traffic, renders a focused TUI, and exposes the same live session through a read-only MCP server.
izlek is an early standalone bootstrap extracted from a working internal developer-tooling prototype. Its configuration and public interfaces may change before the first stable release.
Why izlek
Frontend debugging in a monorepo rarely happens in one terminal stream. Build output, package watchers, runtime errors, remote backends, and failed requests all belong to the same development session. izlek keeps that context together without replacing Turbo, Nx, pnpm, Yarn, npm, or browser DevTools.
The foreground izlek dev process owns the session. It supervises the configured command, optionally
starts a bounded HTTP recorder, retains recent diagnostics in memory, renders the TUI, and exposes a
permission-restricted local socket. Other terminal commands and MCP clients query that socket.
Related MCP server: agent-activity
Command surface
izlek dev web --env staging
izlek attach
izlek status
izlek logs --errors
izlek network --failed
izlek inspect request-42
izlek mcpCurrent capabilities
Generic shell-free development command per project
Named backend environments selected when the session starts
Bounded process logs with source, stream, level, and timestamp metadata
Streaming HTTP reverse proxy with bounded request/response capture
Sensitive-header and captured JSON-field redaction before storage
Bounded network history and request inspection
Dev and Network TUI views
Read-only local session socket shared by CLI and MCP consumers
Read-only stdio MCP tools for status, logs, errors, and HTTP records
Coordinated child-process shutdown with TERM-to-KILL escalation
Layered shared and ignored local configuration
Install for development
npm install
npm link
izlek --helpizlek requires Node.js 20.9 or newer.
Configure a project
Run izlek config init for a minimal generic configuration, or create izlek.config.json:
{
"projects": {
"web": {
"command": ["npm", "run", "dev"],
"defaultEnvironment": "local",
"backend": {
"listen": "127.0.0.1:30998",
"envVar": "NEXT_PUBLIC_API_URL"
}
}
},
"environments": {
"local": {
"target": "http://127.0.0.1:8080",
"healthCheck": "/health"
},
"staging": {
"target": "https://api.staging.example.com"
}
}
}The command must be an argument array. izlek does not execute configuration through a shell.
izlek.config.local.json is ignored by Git and may override named projects or environments for one
developer. Do not treat either configuration file as a secret store.
The backend environment is selected once when the session starts. Live environment switching is not a core workflow.
TUI
Key | Action |
| Development logs |
| Backend network records |
| Select a request |
| Move between request list and detail |
| Copy selected record as JSON |
| Copy selected request as cURL |
| Show key reference |
| Stop the owned development session |
izlek attach opens a second read-only TUI connected to the foreground session.
Agent access through MCP
Configure an MCP client to launch izlek from the project directory:
{
"mcpServers": {
"izlek": {
"command": "izlek",
"args": ["mcp"]
}
}
}Available tools:
get_session_statusquery_logsget_recent_errorsquery_requestsget_request
MCP tools are intentionally read-only. Captured bodies are omitted by default and require an explicit
includeBodies argument. All captured log and network content must be treated as untrusted data.
Memory and capture policy
Current defaults are product invariants:
200 retained log lines, capped at 16 KiB per line
50 completed backend requests
512 KiB of textual content per request or response body
20 concurrently captured calls
Metadata only for binary or compressed bodies
Forwarding continues even when capture is truncated or skipped.
Project boundaries
izlek does not implement task graphs, build caching, browser automation, production monitoring, secret management, or a persistent log database. It observes the configured development command and backend traffic explicitly routed through its local proxy.
Development
npm test
npm run checkTests use Node's built-in test runner and are colocated with their modules.
No open-source license has been selected yet. Choose one before distributing izlek as an open-source package.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for reading Claude Code session history from the local filesystem, exposing project and session data to MCP-compatible clients.6MIT
- AlicenseAqualityBmaintenanceA read-only MCP server that exposes local coding-agent session logs as three tools for introspection of recent work, debugging tool failures, and tracking token usage and estimated cost without parsing log files.3MIT

Auralogs MCP Serverofficial
Alicense-qualityCmaintenanceA read-only MCP server for the Auralogs logging platform, enabling AI agents to query production logs, search errors, and retrieve AI analyses without write access. It allows you to ask your coding assistant 'what's broken in production right now?' by connecting to your logs via a simple bearer auth key.MIT- Flicense-qualityCmaintenanceA local-first MCP server that gives AI coding agents runtime visibility and AI-managed debug logging. It replaces blind print() debugging by turning runtime execution into causal chains, allowing agents to instantly locate bugs by finding missing .success events in Python and TypeScript code. Single binary with MCP, CLI, and HTTP interfaces.
Related MCP Connectors
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
MCP (Model Context Protocol) server for Appwrite
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/barisGultekin/izlek'
If you have feedback or need assistance with the MCP directory API, please join our Discord server