mcp-server-server
@MCP-Mirror
关于 mcp-server-server
Mirror of
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"rgarcia_mcp-server-server": {
"command": "bun",
"args": [
"run",
"mcp-server",
"-p",
"3001",
"--",
"npx",
"-y",
"@modelcontextprotocol/server-puppeteer@latest"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is mcp-server-server?
A proof-of-concept MCP server wrapper that converts stdio-based MCP servers into websocket servers, allowing programmatic interaction over the network without spawning subprocesses.
How to use mcp-server-server?
Run the wrapper with bun run mcp-server -p <port> -- <mcp-server-command> (e.g., bun run mcp-server -p 3001 -- npx -y @modelcontextprotocol/server-puppeteer@latest). Then connect using WebSocketClientTransport from the MCP SDK.
Key features of mcp-server-server
- Wraps any stdio MCP server as a websocket server.
- Eliminates process management in MCP clients.
- Enables network-based MCP server communication.
- Simple CLI with port and server command parameters.
- Works with all existing stdio MCP servers.
Use cases of mcp-server-server
- Programmatically interact with MCP servers without spawning processes.
- Test MCP servers in code using WebSocketClientTransport.
- Simplify MCP server integration into web applications or services.
FAQ from mcp-server-server
What does mcp-server-server do?
It takes a stdio MCP server command and exposes it as a websocket server, so clients can connect over the network instead of managing subprocesses.
What transport does it use?
WebSocket transport. Clients connect using WebSocketClientTransport from the MCP SDK.
What are the runtime dependencies?
Bun is required to run the wrapper. The client side uses the MCP SDK (@modelcontextprotocol/sdk) and Node.js/Bun.
Is this ready for production?
No, this is a proof of concept. Multi-user configuration support (step 3) is marked as TODO.
How do I connect to the wrapped server?
Use the MCP Client with WebSocketClientTransport pointing to the websocket URL (e.g., ws://localhost:3001).
其他 分类下的更多 MCP 服务器
IDA Pro MCP
mrexodiaAI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
XcodeBuildMCP
cameroncookeA Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
FastMCP v2 🚀
jlowin🚀 The fast, Pythonic way to build MCP servers and clients.
Activepieces
activepiecesAI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
评论