get_uuid
Generate random UUIDs for unique identification in software development and data management. This tool creates universally unique identifiers on demand.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- get-uuid.py:6-8 (handler)The handler function for the 'get_uuid' tool, decorated with @mcp.tool() to register it. It generates and returns a new UUID using uuid.uuid4().@mcp.tool() async def get_uuid() -> str: return uuid.uuid4()