uuid-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@uuid-mcpgenerate a random UUID"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
UUID MCP Tool
A simple Model Context Protocol (MCP) server that provides a tool to generate UUIDs.
Installation
Install from PyPI (Recommended)
pip install uuid-mcpInstall from source
Clone or download this repository
Install the package:
pip install .Or install in development mode:
pip install -e .Install from local directory
If you have the package locally:
pip install /path/to/uuid-mcpRelated MCP server: mcp-uuid
Usage
After installation, you can run the MCP server using the uuid-mcp command:
uuid-mcpThe server will communicate via stdio and expose a generate_uuid tool that generates a random UUID (version 4) when called.
Tool
generate_uuid: Generates a random UUID (version 4). Takes no parameters and returns a UUID string.
Adding to Cursor
To use this MCP tool in Cursor, add it to your Cursor MCP configuration:
Open Cursor Settings (Cmd/Ctrl + ,)
Navigate to "Features" → "Model Context Protocol" or search for "MCP"
Click "Edit Config" or open the MCP configuration file (typically located at
~/.cursor/mcp.jsonor in Cursor's settings)Add the following configuration:
{
"mcpServers": {
"uuid-generator": {
"command": "uuid-mcp"
}
}
}If uuid-mcp is not in your PATH, you can use the full path to the executable. After pip installation, you can find it with:
which uuid-mcpOr use Python's -m flag:
{
"mcpServers": {
"uuid-generator": {
"command": "python",
"args": ["-m", "uuid_mcp.server"]
}
}
}Restart Cursor for the changes to take effect.
Once configured, you can use the generate_uuid tool in Cursor's AI chat interface.
Publishing
For package maintainers: See PUBLISHING.md for instructions on how to publish this package to PyPI.
This server cannot be deployed
Maintenance
Related MCP Connectors
Related MCP Servers
- AlicenseBqualityBmaintenanceGenerates UUID, ULID, and NanoID identifiers via MCP protocol.54 npm29 PyPIMIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that generates random UUIDs (v4) for MCP-compatible clients like Claude Desktop.2Apache 2.0
- FlicenseNot gradedqualityDmaintenanceProvides various developer utilities such as UUID generation, timestamp conversion, Base64 encoding, color conversion, password generation, hash generation, and JSON formatting via MCP.11 npm1-
- AlicenseBqualityDmaintenanceProvides a comprehensive set of developer utilities including UUID generation, email validation, hashing, JSON manipulation, Brazilian document handling, and more, accessible via MCP.1514 npm2MIT