1. Conduid
  2. Developer Tools
  3. uuid
MCP server · Developer Tools

uuid

MCP server: generate and validate UUID v4 and v7 (RFC 9562).

Unclaimed other
39Low

Scored 2 days ago · breakdown

About uuid

uuid is an MCP server published by git+tanker327 in the Developer Tools category: mCP server: generate and validate UUID v4 and v7 (RFC 9562). It has been installed 0 times through Conduid.

Install

Install
npx uuid-mcp
Claude Code
claude mcp add uuid-mcp -- npx -y uuid-mcp
npx
npx -y uuid-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about uuid

Powered by Claude · Grounded in docs

I know everything about uuid. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

UUID MCP Provider

A simple Model Context Protocol (MCP) server that provides timestamp-based UUIDs whenever it's called by an LLM.

Features

  • Provides a single tool: generateUuid
  • Uses UUID v7 for timestamp-based unique identifiers
  • Simple interface with no input parameters needed
  • Easy integration with Claude and other LLMs

Installation

# Install dependencies
npm install

# Build the project
npm run build

Usage

You can run the server directly:

npm start

Integration with Claude Desktop

To integrate with Claude Desktop, add this to your Claude Desktop configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "uuid-provider": {
      "command": "node",
      "args": ["/absolute/path/to/uuid-mcp/build/index.js"]
    }
  }
}

Replace /absolute/path/to/uuid-mcp/build/index.js with the absolute path to your built index.js file.

After updating the configuration, restart Claude Desktop to see the UUID generation tool available.

How It Works

This server uses the official uuid package to generate UUID v7 identifiers. UUID v7 is specifically designed to be timestamp-based while maintaining strong uniqueness guarantees:

  • Incorporates a Unix timestamp in millisecond precision
  • Adds randomized data to ensure uniqueness even when multiple IDs are generated in the same millisecond
  • Follows the latest RFC standards for UUID generation
  • Provides chronologically sortable identifiers
  • Prevents collisions in distributed systems

This approach is more reliable than custom UUID implementations and eliminates the potential for duplicates even under high load.

Dependencies

  • @modelcontextprotocol/sdk: For MCP server implementation
  • uuid: For RFC-compliant UUID generation
  • TypeScript and related tools for development

Example

When called, the tool returns a UUID v7 string that looks like:

018e94d2-279b-7bd3-9289-80d1e6619670

The first part of the UUID contains the timestamp, making these identifiers chronologically sortable while still maintaining the standard UUID format.

README mirrored from the source repository 2 days ago. The original is authoritative.

Questions

About uuid

How do I install uuid?

Run npx uuid-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is uuid safe to use with an AI agent?

Its trust score is 39 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is uuid still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.