Skip to main content
Glama
paladini

devutils-mcp-server

generate_uuid

Generate cryptographically secure UUID v4 identifiers for applications, with options to create multiple UUIDs at once.

Instructions

Generate a cryptographically secure UUID v4.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNoNumber of UUIDs to generate (1-100, default: 1)

Implementation Reference

  • The tool 'generate_uuid' is defined and implemented directly within the registration call to server.tool inside registerGeneratorTools.
    // UUID v4 generator
    server.tool(
      "generate_uuid",
      "Generate a cryptographically secure UUID v4.",
      {
        count: z
          .number()
          .int()
          .min(1)
          .max(100)
          .default(1)
          .describe("Number of UUIDs to generate (1-100, default: 1)"),
      },
      async ({ count }) => {
        const uuids = Array.from({ length: count }, () => randomUUID());
        return {
          content: [{ type: "text" as const, text: uuids.join("\n") }],
        };
      }
    );

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/paladini/devutils-mcp-server'

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