Skip to main content
Glama

Moonshot MCP Server Gateway

🚀 Moonshot MCP Server Gateway

📝✨ Description

Moonshot MCP Server Gateway is a lightweight gateway server with the following main features:

  • Provides a unified connection entry point, allowing clients to access multiple MCP servers by connecting to this server
  • Simplifies the connection and management process of MCP servers
  • Supports multiple protocols, including Network Transports, Local Transports, etc. For specific protocols, please refer to the MCP Protocol Documentation

⌨️🚀 Quick Start

git clone https://github.com/MarshallEriksen-shaomingyang/moonshot-mcp-server.git cp .env.example .env cp moonshot_config.example.toml moonshot_config.toml # Create virtual environment uv venv # Activate virtual environment source .venv/bin/activate # Start the project uv run server.py --mode http or uv run server.py --mode sse

⚙️📋 MCP Configuration Details (moonshot_config.toml)

📑 Configuration File Structure

1️⃣ Server Basic Configuration [server]
Config ItemDescriptionRequired
nameServer nameYes
versionServer versionYes
portListening portYes
hostListening addressYes
2️⃣ MCP Sub-server Configuration [mcpServers]

MCP supports multiple types of server configurations. Each sub-server configuration needs to specify a unique name (e.g., [mcpServers.server_name]) and a required prefix field for API routing.

⚙️ Process Server (type = "process")
Config ItemDescriptionRequired
commandInterpreter commandYes
script_pathScript pathYes
argsStartup parametersNo
prefixAPI routing prefixYes
excludeCommands to excludeNo
cwdWorking directoryNo
envEnvironment variablesNo
🌐 HTTP/HTTPS Server (type = "http"/"https")
Config ItemDescriptionRequired
urlServer URLYes
prefixAPI routing prefixYes
headersRequest headersNo
🔌 WebSocket Server (type = "websocket")
Config ItemDescriptionRequired
urlWebSocket server addressYes
prefixAPI routing prefixYes
📦 NPX Server (type = "npx")
Config ItemDescriptionRequired
packageNPM package nameYes
argsStartup parametersNo
prefixAPI routing prefixYes
envEnvironment variablesNo
project_directoryProject directoryNo
use_package_lockWhether to use package-lock.jsonNo
🐍 UVX Server (type = "uvx")
Config ItemDescriptionRequired
tool_nameTool nameYes
from_packagePackage nameNo
with_packagesDependency package listNo
argsTool parametersNo
prefixAPI routing prefixYes
envEnvironment variablesNo
project_directoryProject directoryNo
python_versionPython versionNo

🧩 Configuration Example

# Basic server configuration [server] name = "AlphaCore Server" version = "1.0.0" port = 8090 host = "0.0.0.0" # Process server example [mcpServers.python_server] type = "process" command = "python3" script_path = "server.py" prefix = "py" cwd = "/data/moonshot_tools" # HTTP server example [mcpServers.http_server] type = "https" url = "https://api.example.com/mcp" prefix = "api" # For more configuration examples, please refer to moonshot_config.example.toml

🔗 MCP Tool List:

-
security - not tested
A
license - permissive license
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

A lightweight gateway server that provides a unified connection entry point for accessing multiple MCP servers, supporting various protocols including Network and Local Transports.

  1. 📝✨ Description
    1. ⌨️🚀 Quick Start
      1. ⚙️📋 MCP Configuration Details (moonshot_config.toml)
        1. 📑 Configuration File Structure
        2. 🧩 Configuration Example
      2. 🔗 MCP Tool List:

        Related MCP Servers

        • A
          security
          A
          license
          A
          quality
          A proxy server that unifies multiple MCP servers, enabling seamless tool, prompt, and resource management via the MetaMCP App.
          Last updated -
          1,489
          119
          TypeScript
          Apache 2.0
        • -
          security
          F
          license
          -
          quality
          An MCP server that connects to the Resource Hub, allowing centralized configuration and management of tools and resources across different MCP environments.
          Last updated -
          2
          JavaScript
          • Apple
        • A
          security
          F
          license
          A
          quality
          An MCP server implementation that enables interaction with the Unstructured API, providing tools to list, create, update, and manage sources, destinations, and workflows.
          Last updated -
          39
          28
          • Apple
        • A
          security
          F
          license
          A
          quality
          A lightweight MCP server that provides a unified interface to various LLM providers including OpenAI, Anthropic, Google Gemini, Groq, DeepSeek, and Ollama.
          Last updated -
          6
          218
          Python

        View all related MCP servers

        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/MarshallEriksen-shaomingyang/moonshot-mcp-server'

        If you have feedback or need assistance with the MCP directory API, please join our Discord server