@abhishekrj02/uuid-mcp
v1.0.5
Published
A minimal UUID utility server built for the Model Context Protocol (MCP).
Maintainers
Readme
uuid-mcp
A minimal UUID utility server built for the Model Context Protocol (MCP). Generate UUIDs seamlessly through Claude Desktop and Claude Code.
Claude talks to it over stdio, gets a UUID, done.
Features
- 🆔 Generate random UUIDs (v4)
- 🔌 Easy integration with Claude Desktop and Claude Code
- ⚡ Lightweight and fast
- 🛠️ Built with TypeScript
Installation
Option 1: Install globally (simple, persistent)
npm install -g @abhishekrj02/uuid-mcpVerify it works:
uuid-mcpYou should see:
UUID Generator MCP Server running on stdioClaude Code setup
Claude Code does not auto-discover MCP servers. You must register it manually.
Install the Package
You can use this package without installing it globally by using npx, or install it globally for faster access.
npm install -g @abhishekrj02/uuid-mcpAdd to Claude Code
For Windows Users
claude mcp add uuid-mcp -- cmd /c npx -y @abhishekrj02/uuid-mcpFor macOS/Linux Users
claude mcp add uuid-mcp -- npx -y @abhishekrj02/uuid-mcpVerify Installation
claude mcp listUse It
Start a Claude Code session:
claudeThen simply ask Claude to generate a UUID:
Can you generate a UUID for me?Claude will use the MCP server to generate a random UUID.
Claude Desktop setup
Claude Desktop does not auto-discover MCP servers. You must register it manually.
Config file location
macOS / Linux
~/.config/claude-desktop/claude_desktop_config.jsonWindows
%APPDATA%\Claude\claude_desktop_config.jsonAdd this:
{
"mcpServers": {
"uuid": {
"command": "uuid-mcp"
}
}
}Restart Claude Desktop after saving.
Example Usage
Once configured, just ask Claude: Generate a UUID
Development
Clone and build:
npm install
npm run buildRun locally:
node build/index.js