get_random_name
Generate Docker-style random names using the MCP interface. Integrates with Claude Desktop and VS Code Copilot Agent for streamlined name creation in development workflows.
Instructions
Generate a random name like Docker does.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- mong_mcp_server/server.py:12-14 (handler)The handler function that executes the logic for the 'get_random_name' tool by delegating to mong.get_random_name().def get_random_name() -> str: """Tool to Generate Docker-Like Random Names""" return mong.get_random_name()
- mong_mcp_server/server.py:8-11 (registration)The decorator that registers the 'get_random_name' tool with the MCP server.@mcp.tool( name="get_random_name", description="Generate a random name like Docker does." )