MCP.so
Sign In
U

Uuid Provider

@tanker327

About Uuid Provider

No overview available yet

Basic information

Category

Other

Transports

stdio

Publisher

tanker327

Submitted by

Eric Wu

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "uuid-provider": {
      "command": "node",
      "args": [
        "/absolute/path/to/uuid-mcp/build/index.js"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Uuid Provider?

Uuid Provider is a Model Context Protocol (MCP) server that provides timestamp‑based UUIDs (UUID v7) whenever it is called by an LLM. It exposes a single tool called generateUuid which requires no input parameters.

How to use Uuid Provider?

Install dependencies with npm install, build with npm run build, and start the server with npm start. To integrate with Claude Desktop, add a configuration entry to the Claude Desktop config file (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json, Windows: %APPDATA%\Claude\claude_desktop_config.json) pointing to the absolute path of the built index.js.

Key features of Uuid Provider

  • Provides a single tool generateUuid
  • Uses UUID v7 for timestamp‑based unique identifiers
  • No input parameters required
  • Easy integration with Claude and other LLMs
  • Generates chronologically sortable identifiers
  • Prevents collisions even under high load

Use cases of Uuid Provider

  • Generating unique identifiers for LLM‑generated content
  • Creating timestamp‑sortable IDs for event logging
  • Avoiding duplicate IDs in distributed systems under load
  • Simple integration with Claude Desktop for automated ID generation

FAQ from Uuid Provider

What type of UUID does Uuid Provider generate?

It generates UUID v7, which is timestamp‑based and chronologically sortable while maintaining uniqueness.

How do I integrate Uuid Provider with Claude Desktop?

Add a configuration entry to the Claude Desktop config file (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json, Windows: %APPDATA%\Claude\claude_desktop_config.json) with the absolute path to the built index.js.

Does the generateUuid tool require any input parameters?

No, the tool has no input parameters.

What dependencies does Uuid Provider require?

It requires @modelcontextprotocol/sdk, uuid, and TypeScript with related tools.

How does UUID v7 prevent collisions?

It incorporates a Unix timestamp in millisecond precision and adds randomized data to ensure uniqueness even when multiple IDs are generated in the same millisecond.

Comments

More Other MCP servers