Lazy MCP
Allows performing web searches using Brave Search, providing up-to-date information from the web.
Provides tools for version control operations, such as committing, branching, and viewing history.
Provides tools for interacting with GitHub repositories, issues, pull requests, and other GitHub features.
Provides tools for managing issues, projects, and teams in Linear.
Provides tools for interacting with Notion workspaces, including pages, databases, and content.
Provides browser automation capabilities for web scraping and testing using Puppeteer.
Provides tools for error tracking and performance monitoring via Sentry.
Provides tools for sending messages, managing channels, and interacting with Slack workspaces.
Provides tools for querying and managing SQLite databases.
Query and manage Supabase projects, including tables, RLS, storage, and auth.
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., "@Lazy MCPlist servers"
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.
lazy-mcp
npx for MCP servers — install the catalog once, pay the context cost only for what you actually load.
The Problem
Adding an MCP server to your agent is a one-way door. Every server you add — Supabase, Sentry, Playwright, Betterstack — dumps all of its tool definitions into context permanently, whether you use them once a session or never. Want to add one mid-session? Restart and lose your context. There's no lazy loading, no unloading, no cost visibility. You're paying rent on tools you're not using, every single turn.
lazy-mcp is the single MCP server you point your client at instead of N real ones — it shows you a one-line catalog, loads real tools only when an agent asks for them, and lets you hot-swap servers mid-session without losing your conversation.
Without lazy-mcp | With lazy-mcp | |
Tools in context at session start | 40+ (every configured server) | 4 ( |
Add a new server mid-session | Restart client, lose context |
|
Know what a server costs you | No visibility |
|
Idle server you forgot about | Sits in context forever | Auto-unloads after idle timeout (coming soon) |
Related MCP server: nimble
Demo
(Demo GIF showing list_servers -> load_server("playwright") -> tool call -> unload_server goes here)
Install
cargo install lazy-mcp-proxyThen, configure your Claude Desktop or Claude Code client to point to lazy-mcp:
{
"mcpServers": {
"lazy-mcp": {
"command": "lazy-mcp",
"args": ["--config", "/path/to/your/config.toml"]
}
}
}Quickstart Config
Create a config.toml file to define your server catalog. You can define as many servers as you want; they cost zero context tokens until loaded.
[[servers]]
name = "supabase"
description = "Query and manage Supabase projects (tables, RLS, storage, auth)"
command = "npx"
args = ["-y", "@supabase/mcp-server-supabase"]
env = { SUPABASE_ACCESS_TOKEN = "${SUPABASE_ACCESS_TOKEN}" }
auto_unload_after_idle_secs = 600
[[servers]]
name = "playwright"
description = "Browser automation: navigate, click, screenshot"
command = "npx"
args = ["-y", "@modelcontextprotocol/server-playwright"]How it works
lazy-mcp acts as a transparent proxy. When it starts, it advertises only its meta-tools to your client. When you ask it to load a server, it spawns that server as a child process, fetches its tool list, namespaces them (e.g. playwright.navigate), and fires a notifications/tools/list_changed event. Your client re-fetches the tool list and instantly sees the new tools, mid-session.
Comparison to Alternatives
There are several other projects in this space, but lazy-mcp is the only one offering a full enterprise-grade feature set:
Feature | GitLab lazy-mcp | mcp-lazy (npm) | voicetreelab/lazy-mcp | lazy-mcp-preload | lazy-mcp 0.2 |
Basic lazy load/unload | ✅ | ✅ | ✅ | ✅ | ✅ |
Config CLI rewriting | ❌ | ✅ | ❌ | ❌ | ✅ ( |
Category browsing | ❌ | ❌ | ✅ | ❌ | ✅ |
Warm preloading | ❌ | ❌ | ❌ | ✅ | ✅ |
Shared warm daemon | ❌ | ❌ | ❌ | ❌ | ✅ (Share servers across IDEs) |
Full protocol proxy | ❌ | ❌ | ❌ | ❌ | ✅ (Resources & Prompts) |
Real tokenizer costs | ❌ | ❌ | ❌ | ❌ | ✅ (tiktoken-rs cl100k) |
Live Web Dashboard | ❌ | ❌ | ❌ | ❌ | ✅ (Port 4124) |
Adaptive Eviction | ❌ | ❌ | ❌ | ❌ | ✅ ( |
Safety dry-run | ❌ | ❌ | ❌ | ❌ | ✅ (Secret redaction) |
Permission Hooks | ❌ | ❌ | ❌ | ❌ | ✅ |
Config merging | ❌ | ❌ | ❌ | ❌ | ✅ ( |
Meta-Tools Reference
Tool | Description |
| Returns the catalog of available servers and their load status. |
| Spawns the real MCP server and merges its tools into the client's context. |
| Tears down the child connection and removes its tools from context. |
| Shows uptime and real tiktoken token footprint for each loaded server. |
| Navigate large server lists hierarchically. |
Dashboard & Daemon Mode
Instead of running separate instances for Claude Desktop, Claude Code, and Cursor, start the lazy-mcp daemon:
lazy-mcp daemonThis runs a shared daemon on 127.0.0.1:4123 and a live web dashboard on http://127.0.0.1:4124. Your clients automatically act as thin proxies, sharing the warm server pool to save memory and tokens!
Roadmap
Planned for future releases:
Semantic auto-loading (automatically loading a server based on intent).
Remote/HTTP transport (SSE/WebSocket proxying).
OAuth 2.0 + PKCE for remote servers.
Contributing
See CONTRIBUTING.md for details.
Good first issue: Add a popular MCP server to our config.example.toml catalog! It requires zero Rust knowledge and helps everyone.
License
MIT License.
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
- Alicense-qualityCmaintenanceActs as a proxy for multiple MCP servers, reducing context window usage from 15,000+ tokens to ~500 tokens by dynamically loading servers on-demand and exposing only 3 tools instead of all tool definitions.Last updated5GPL 3.0
- Alicense-qualityDmaintenanceA token-efficient MCP server that reduces context window bloat by lazy loading tool descriptions and proxying calls through three simple tools, with a dashboard for managing connections.Last updated378MIT

mcp-server-metatoolofficial
Alicense-qualityCmaintenanceA proxy MCP server that aggregates tools from multiple MCP servers and forwards calls to the appropriate server, used with the Metatool App for GUI tool management.Last updated5Apache 2.0- AlicenseAqualityDmaintenanceA proxy MCP server that reduces token usage by caching tool definitions locally and loading them on demand, supporting multiple backend MCP servers.Last updated51Apache 2.0
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
An MCP server for deep research or task groups
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/Parth3930/lazy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server