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

Related MCP server: Copilot MCP Server

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.

Available Tools

1 tool
get_random_nameB

Generate a random name like Docker does.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It mentions generating a name 'like Docker does,' which hints at a specific behavior or format, but doesn't disclose details like output format, randomness source, rate limits, or error handling. This leaves significant gaps in understanding how the tool behaves beyond its basic purpose.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with no wasted words. It's front-loaded with the core purpose ('Generate a random name') and adds a clarifying analogy ('like Docker does'), making it appropriately sized and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (0 parameters, no annotations, but has an output schema), the description is minimally adequate. It states what the tool does but lacks details on behavior, output format, or usage context. The presence of an output schema means the description doesn't need to explain return values, but it could still benefit from more context about the 'Docker-like' naming convention.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has 0 parameters, and schema description coverage is 100%, so there are no parameters to document. The description doesn't need to add parameter semantics, and it appropriately avoids discussing non-existent inputs, earning a baseline score of 4 for this context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool 'Generate[s] a random name like Docker does,' which provides a clear verb ('generate') and resource ('random name'). However, it's somewhat vague about what 'like Docker does' entails—whether it's a specific naming convention, format, or style—and there are no sibling tools to distinguish from, so it can't achieve the highest differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description offers no guidance on when to use this tool versus alternatives, prerequisites, or exclusions. It implies usage for generating random names, but without context or sibling tools, there's no explicit when/when-not advice, leaving the agent with minimal direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 1 tool update
    • First observedget_random_name

TDQS

B3.1/5.0
Disambiguation5/5

With only one tool, there is no possibility of confusion or overlap between tools. The tool's purpose is clearly distinct as it is the only one available, making disambiguation trivial.

Naming Consistency5/5

A single tool inherently has perfect naming consistency since there are no other tools to compare against. The name 'get_random_name' follows a clear verb_noun pattern, which is consistent with itself.

Tool Count2/5

A single tool is too few for a server named 'Mong MCP Server', which suggests a broader purpose or domain. This minimal toolset feels thin and underdeveloped, limiting the server's utility and scope.

Completeness1/5

The server is severely incomplete; with only one tool for generating random names, it lacks any meaningful coverage of a domain. There are obvious gaps as no other operations or resources are supported, making it inadequate for most agent tasks.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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