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 Stdio Wrapperlist tools from the node server at ./dist/index.js"
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 Stdio Wrapper
MCP Stdio Wrapper is a small MCP server that lets one MCP client launch and inspect another stdio MCP server on demand.
Its job is to remove a painful MCP development loop: some mainstream MCP hosts cache the real server process, so after every code change you end up refreshing the window or restarting the extension host just to smoke-test the change. This wrapper sits in front of the real target server and gives your agent a stable bridge for repeated smoke tests while the target implementation keeps changing underneath it.
Why This Exists
Use this project when:
you are actively developing a stdio MCP server
your main MCP host does not reliably reload the target server after each change
you still want an agent to list tools, call tools, read resources, and inspect prompts throughout development
This project is intentionally narrow. It is for local development and smoke testing, not for production traffic proxying.
The wrapper also exposes built-in guidance that agents can discover directly:
resource:
wrapper://how-to-useprompt:
tool_usage_guide
How It Works
The wrapper exposes six generic bridge tools:
stdio_mcp_list_toolsstdio_mcp_call_toolstdio_mcp_list_resourcesstdio_mcp_read_resourcestdio_mcp_list_promptsstdio_mcp_get_prompt
Each bridge call:
launches the target stdio MCP server
performs one MCP operation
returns the result
closes the target process
That means:
no persistent target session state
no hidden caching behavior
a clean target process per smoke test
easier debugging because target stderr is surfaced on failure
Quick Start
Clone the repo and install dependencies:
nvm use
npm installStart the wrapper:
npm startOnce you publish the package to npm, this can also become:
npx mcp-stdio-wrapperPoint your main MCP client at this wrapper, then use one of the bridge tools with launch input like:
{
"command": "node",
"args": ["C:\\path\\to\\your-mcp\\dist\\index.js"],
"cwd": "C:\\path\\to\\your-mcp",
"inheritParentEnv": true,
"env": {
"EXAMPLE_ENV": "value"
},
"timeoutMs": 30000
}Then ask your agent to:
list tools from the real target server
call one target tool after each code change
verify resource reads or prompts
Tool Surface
Common launch fields:
command: target executableargs: target command argumentscwd: optional target working directoryinheritParentEnv: whentrue, merge the wrapper process environment into the target launchenv: additional target environment variablestimeoutMs: max time for target launch and operation
Bridge operations:
stdio_mcp_list_tools: inspect target toolsstdio_mcp_call_tool: call one target toolstdio_mcp_list_resources: inspect target resourcesstdio_mcp_read_resource: read one target resourcestdio_mcp_list_prompts: inspect target promptsstdio_mcp_get_prompt: fetch one target prompt definition
Wrapper guidance surfaces:
wrapper://how-to-use: plain-text usage guidetool_usage_guide: prompt form of the same instructions
Safety Notes
This wrapper launches arbitrary commands supplied by the caller.
Treat launch arguments and env vars as sensitive.
Only use it with trusted target commands and trusted local projects.
Do not expose this as a public multi-tenant service.
Documentation
Star History
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.