mcp_server_exe
MCP Server.exe is a powerful executable server that runs standard MCP services and offers advanced features.
MCP Server.exe is a robust executable server designed to run standard Model Context Protocol (MCP) services while providing a suite of advanced functionalities. It supports tool chain execution, allowing for the sequential combination of multiple tools to automate complex processes. The server can manage multiple MCP services simultaneously, supporting both SSE and stdio modes, which enhances its flexibility and scalability. It features a pluggable tool system for dynamic loading and configuration of custom tools, and offers flexible deployment options ranging from standalone operation to distributed deployment. This makes it suitable for various integration scenarios, including WebSocket connections to other MCP services and quick standalone service startups.
Features
- Tool Chain Execution: Supports sequential combination of multiple tools for complex automation.
- Multiple MCP Services: Can run and manage multiple MCP services simultaneously, supporting both SSE and stdio modes.
- Pluggable Tool System: Supports dynamic loading and configuration of custom tools.
- Flexible Deployment: From standalone operation to distributed deployment, meeting various integration scenarios.
Usage with Different Platforms
WebSocket Connection Mode
# Start in WebSocket mode
./mcp_server.exe --ws wss://api.xiaozhi.me/mcp/?token=...xxx --mcp-config ./examples/mcp-sse.json
Quick Start Standalone Service
# Double-click mcp_server.exe, or start via command line:
./mcp_server.exe
Combine Multiple MCP Services
./mcp_server.exe --mcp-config ./examples/mcp.json
Tool Chain Execution
./mcp_server.exe --mcp-config ./examples/product-hunt/mcp-tool.json
Custom Tools Plugin Mechanism
./mcp_server.exe --mcp-js ./my-custom-tools.js
Embedded Integration
const { spawn } = require('child_process');
const mcpServer = spawn('./mcp_server.exe', [
'--port', '3000',
'--transport', 'stdio' // Use stdio mode for IPC
]);
// Handle I/O
mcpServer.stdout.on('data', (data) => {
// Handle MCP server output
});
mcpServer.stdin.write(JSON.stringify({
// Send request to MCP server
}));
Related MCP Servers
View all developer_tools servers →context7
by upstash
Context7 MCP provides up-to-date, version-specific documentation and code examples directly into your prompt, enhancing the capabilities of LLMs by ensuring they use the latest information.
Sequential Thinking
by modelcontextprotocol
An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process.
git-mcp
by idosal
GitMCP is a free, open-source, remote Model Context Protocol (MCP) server that transforms GitHub projects into documentation hubs, enabling AI tools to access up-to-date documentation and code.
Everything MCP Server
by modelcontextprotocol
The Everything MCP Server is a comprehensive test server designed to demonstrate the full capabilities of the Model Context Protocol (MCP). It is not intended for production use but serves as a valuable tool for developers building MCP clients.
exa-mcp-server
by exa-labs
A Model Context Protocol (MCP) server allows AI assistants to use the Exa AI Search API for real-time web searches in a secure manner.
repomix
by yamadashy
Repomix is a tool that packs your codebase into AI-friendly formats, making it easier to use with AI tools like LLMs.
mcpdoc
by langchain-ai
MCP LLMS-TXT Documentation Server provides a structured way to manage and retrieve LLM documentation using the Model Context Protocol.