mcp-uplift
Allows performing web searches through the Brave Search API via the wrapped legacy server.
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., "@mcp-upliftwrap the legacy filesystem server for /tmp"
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.
mcp-uplift
MCP 2026-07-28 removed the initialization handshake, sessions, ping,
logging configuration, resource subscriptions, and server-initiated requests.
Older MCP servers still use those protocol features. mcp-uplift wraps one
legacy stdio server and presents it as a modern stateless server.
Security: wrapping a server executes that server with your operating-system permissions. This bridge is not a sandbox. Only run packages and commands you trust.
Demo

The unmodified official @modelcontextprotocol/server-filesystem running behind
the 2026-07-28 protocol: server/discover is synthesized from the legacy
handshake, the server's own roots/list request becomes a keyed input_required
result, and answering it resumes the call and returns all 14 tools.
Related MCP server: Streamable HTTP Bridge
Usage
Run without installing:
npx mcp-uplift <legacy-command> [args...]For example:
npx mcp-uplift npx -y @modelcontextprotocol/server-filesystem /tmpThe wrapped command receives a minimal environment by default. Forward a needed
credential explicitly, before --:
npx mcp-uplift --env BRAVE_API_KEY -- npx -y @modelcontextprotocol/server-brave-search--inherit-env is available for compatibility but exposes every environment
variable to the wrapped process. Run npx mcp-uplift --help for resource and
timeout controls.
Client configuration
Before, a client launches the legacy server directly:
{
"mcpServers": {
"files": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"]
}
}
}After, launch the same command through mcp-uplift:
{
"mcpServers": {
"files": {
"command": "npx",
"args": ["mcp-uplift", "npx", "-y", "@modelcontextprotocol/server-filesystem", "/tmp"]
}
}
}Compatibility
Because 2026-07-28 is stateless, every request must carry its own envelope in
params._meta: the protocol version and the client's capabilities, plus
optional client identity. A request missing them is rejected rather than
guessed at.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list",
"params": {
"_meta": {
"io.modelcontextprotocol/protocolVersion": "2026-07-28",
"io.modelcontextprotocol/clientCapabilities": { "roots": {} },
"io.modelcontextprotocol/clientInfo": { "name": "my-client", "version": "1.0.0" }
}
}
}If a wrapped server needs a capability the client did not declare, the bridge
returns -32021 naming what was required, rather than failing deep inside the
call.
Feature | Behavior |
Legacy | Performed once and exposed as |
Per-request version metadata | Validated as |
Tools, prompts, and resources | Forwarded with modern result and cache metadata |
Legacy resource-not-found errors | Mapped from |
Sampling, elicitation, and roots requests | Translated into multi-round-trip |
Removed methods | Rejected with |
Upstream failures | Returned as |
Answering a server's question
A legacy server can interrupt its own call to ask the client something.
Because a modern client cannot receive that push, the bridge returns an
input_required result instead, keyed by request id:
{
"resultType": "input_required",
"inputRequests": {
"ir_1000": {
"method": "elicitation/create",
"params": { "message": "Which environment?" }
}
},
"requestState": "c0a2db7b-62bc-4420-b2e9-31da87f8f999"
}To resume, send the same request again with the requestState you were
given and an inputResponses map using those same keys. Each value is the
response body itself, not wrapped in result:
{
"name": "deploy",
"arguments": {},
"requestState": "c0a2db7b-62bc-4420-b2e9-31da87f8f999",
"inputResponses": {
"ir_1000": { "action": "accept", "content": { "env": "prod" } }
}
}The parked call then finishes and returns its ordinary "complete" result.
Shapes per method: elicitation/create takes { action, content } with
action one of accept, decline, or cancel; roots/list takes
{ roots: [...] }; sampling/createMessage takes { model, role, content }.
The resumed request must match the original, every key must be answered, and
requestState is single-use and expires, so an invalid resume is rejected
rather than half-applied.
Known limitations
Real-world validation confirmed discovery and tool listing against 39 distinct
legacy MCP packages. The official filesystem server also completed a real
roots/list MRTR round trip and returned all 14 tools. These are tested
examples, not a guarantee that every server or session-dependent behavior can
be translated.
All legacy calls are serialized. The legacy protocol never links a
sampling/createMessage,elicitation/create, orroots/listrequest back to the call that caused it, so the bridge keeps one call in flight through all of its MRTR rounds. This favors correct attribution over throughput.Legacy notifications have no home and are dropped.
2026-07-28moved streamed notifications onto a dedicatedsubscriptions/listenstream; this bridge is a plain one-request-one-response stdio proxy and does not implement that stream, sonotifications/progressandnotifications/messagefrom the wrapped server are discarded rather than delivered.Real-server checks require downloads and remain outside the offline suite.
The kill switch terminates the launched process tree on POSIX and Windows, but trusted code can deliberately daemonize into a new OS process session. Use an OS sandbox or container when stronger confinement is required.
Security reports
Do not include credentials or exploit details in a public issue. Report a suspected vulnerability privately through the repository's GitHub security advisory page. Ordinary bugs can use the public issue tracker.
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
- Flicense-quality-maintenanceBridges STDIO-based MCP clients with SSE-based MCP servers, allowing applications like Claude Desktop to connect to remote MCP servers that use SSE transport.9
- Alicense-qualityCmaintenanceA bridge server that converts stdio protocol to streamable-http protocol, allowing clients to interact with MCP services over HTTP.2Mulan Permissive Software , Version 2
- Flicense-qualityDmaintenanceA basic MCP server implementation for testing purposes. Communicates via stdio and is designed to work with MCP-compliant clients.
- Alicense-qualityDmaintenanceExposes any stdio-based MCP server to the internet via HTTP/SSE transport, enabling remote agents to access MCP tools over a network.16MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
A basic MCP server to operate on the Postman API.
Official remote MCP server bridge for Muumuu Domain.
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/MohibShaikh/mcp-uplift'
If you have feedback or need assistance with the MCP directory API, please join our Discord server