Skip to main content
Glama

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.

Deploy Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

Related MCP Servers

  • A
    security
    A
    license
    A
    quality
    A server enabling integration between KoboldAI's text generation capabilities and MCP-compatible applications, with features like chat completion, Stable Diffusion, and OpenAI-compatible API endpoints.
    Last updated -
    20
    15
    7
    MIT License
  • -
    security
    F
    license
    -
    quality
    A minimalist MCP server that provides a single tool to retrieve a developer name, demonstrating the basic structure for Claude's Model Completion Protocol integration.
    Last updated -
    361
    • Apple
    • Linux
  • A
    security
    A
    license
    A
    quality
    Production-ready MCP server that provides LLMs with essential random generation abilities, including random integers, floats, choices, shuffling, and cryptographically secure tokens.
    Last updated -
    7
    43
    MIT License
    • Apple
  • -
    security
    A
    license
    -
    quality
    An MCP server that orchestrates AI coding assistants (Claude Code CLI and Gemini CLI) to perform complex programming tasks autonomously, allowing remote control of your local development environment from anywhere.
    Last updated -
    2
    122
    MIT License

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/ricklord/mong-mcp-server'

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