Mong MCP Server - Secure MCP Server by ALMC Security 2025

Mong MCP Server

View on GitHub

mong-mcp-server

A Model Context Protocol (MCP) server implementation that provides a moby-like random name generator ("mong") for use with tools like Claude Desktop and VS Code Copilot Agent.

Features

  • Exposes a moby-like random name generator through the MCP interface
  • Easy setup and configuration

Configuration for Claude Desktop

Add this server under the mcpServers key of Claude Desktop configuration. See the official document of the Model Context Protocol for details.

{
   "mcpServers": {
      "mong": {
         "command": "uvx",
         "args": [
            "--from",
            "git+https://github.com/toshihikoyanase/mong-mcp-server",
            "mong-mcp"
         ]
      }
   }
}

or

{
    "mcpServers": {
        "mong": {
            "command": "uv",
            "args": [
                "--directory",
                "/path/to/repository",
                "run",
                "python",
                "-m",
                "mong_mcp_server"
            ]
        }
    }
}

Configuration for VS Code Copilot Agent

Add this server under the servers key in your MCP configuration for VS Code. For example, to enable the MCP server in your workspace, create a .vscode/mcp.json file as follows:

{
    "servers": {
        "mong": {
            "type": "stdio",
            "command": "uvx",
            "args": [
                "--from",
                "git+https://github.com/toshihikoyanase/mong-mcp-server",
                "mong-mcp"
            ]
        }
    }
}

Install locally

  1. Clone the repository:

    git clone https://github.com/toshihikoyanase/mong-mcp-server.git
    cd mong-mcp-server
    
  2. Start the server:

    uv run python -m mong_mcp_server
    

Running Tests

Run the unit tests to verify the server functionality:

uv run python -m unittest discover tests/

License

This project is licensed under the MIT License. See the LICENSE file for details.

Related in Development - Secure MCP Servers

ServerSummaryActions
MCP Stdio ServerA complete Model Context Protocol (MCP) server implementation using stdio transport that showcases:View
BlenderMCPBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude t...View
AnubisTransform your AI agent from chaotic coder to intelligent workflow orchestrator with three powerful...View
LSP MCP ServerAn MCP (Model Context Protocol) server for interacting with LSP (Language Server Protocol) interface...View
Quantum Simulator MCP ServerA Docker image providing a quantum circuit simulator that implements the Model Context Protocol (MCP...View
Postman Tool GenerationAn MCP server that generates AI agent tools from Postman collections and requests. This server integ...View