Generates timestamp-based unique identifiers using UUID v7.
A simple Model Context Protocol (MCP) server that provides timestamp-based UUIDs whenever it's called by an LLM.
generateUuid
# Install dependencies
npm install
# Build the project
npm run build
You can run the server directly:
npm start
To integrate with Claude Desktop, add this to your Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%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.
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:
This approach is more reliable than custom UUID implementations and eliminates the potential for duplicates even under high load.
@modelcontextprotocol/sdk
: For MCP server implementationuuid
: For RFC-compliant UUID generationWhen 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.
Access Solana documentation context through a simple notes system with resources, tools, and prompts.
A Next.js-based MCP server with OAuth 2.1 authentication support using Google as the default provider. Requires a PostgreSQL database and optionally Redis for SSE transport.
An MCP server for AI coding assistants to control, inspect, and modify Bevy applications using the Bevy Remote Protocol (BRP).
Create and modify wireframes in the Frame0 app through natural language prompts.
Interact with Alchemy's blockchain APIs to query data without writing code.
Integrates with Jenkins CI/CD systems for AI-powered insights, build management, and debugging.
An MCP server (and command-line tool) to provide a dynamic map of chat-related files from the repository with their function prototypes and related files in order of relevance. Based on the "Repo Map" functionality in Aider.chat
MCP server for TeamCity, integrates with Claude Desktop and Cursor.
An example of deploying a remote MCP server on Cloudflare Workers without authentication.
Query the BuiltWith API to discover the technology stacks of websites. Requires a BuiltWith API key.