- Home
- MCP servers
- Python MCP UUID Server
Python MCP UUID Server
- python
2
GitHub Stars
python
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"conao3-python-mcp-uuid": {
"command": "mcp-uuid",
"args": []
}
}
}You have a lightweight MCP server that provides a local CLI tool to generate UUIDs for MCP clients. It is designed to be run locally and wired into your MCP client configuration so your tooling can request UUIDs on demand. This guide walks you through installing, configuring, and using that server efficiently.
How to use
To use the MCP server, install it locally and configure your MCP client to start the server via a standard stdio process. The client will invoke the command you specify to obtain UUID values as part of your MCP workflows. In your client setup, point to the UUID server by its name and ensure the runtime command is available on your system. When you run your MCP client workflow, the server will be invoked as a local process to generate new UUIDs on demand.
How to install
Prerequisites: you need a Python-oriented development environment and the PDM package manager to install and manage this server locally.
pdm install
ln -s $(pdm run which mcp-uuid) ~/.local/bin/
Additional sections
Configure your MCP client to run the UUID server locally by specifying the CLI tool in the MCP client configuration.
NixOS tips
pdm config venv.backend venv
Available tools
mcp-uuid
CLI tool that implements the MCP UUID generation workflow for MCP clients.