get_uuid
Generate unique random UUIDs using the MCP UUID Server. The tool provides quick and reliable UUIDs for integration with Claude Desktop or other systems.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- get-uuid.py:6-6 (registration)Registers the get_uuid tool using the @mcp.tool() decorator from FastMCP.@mcp.tool()
- get-uuid.py:7-8 (handler)The handler function that generates a new UUIDv4 and returns it as a string.async def get_uuid() -> str: return uuid.uuid4()
- get-uuid.py:7-7 (schema)Output schema defined as str via type hint (no input parameters).async def get_uuid() -> str:
- get-uuid.py:1-1 (helper)Imports the uuid module used to generate UUIDs.import uuid