MCP UUID Server
A simple MCP server that provides a UUID generation service.
MCP UUID サーバー
概要
このMCPサーバーは、UUIDを生成するためのシンプルなサービスを提供します。
環境要件
- Python 3.10以上
- MCP(Model Context Protocol)パッケージ v1.2.0以上
- Claude Desktop
インストール方法
# 依存関係のインストール
uv pip sync
使用方法
1. Claude Desktopでの使用
設定ファイルの編集
Claude Desktopの設定ファイルを編集して、このMCPサーバーを追加します。設定ファイルのパスは以下の通りです:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
以下のJSON設定を追加します(既存のmcpServers
オブジェクト内に追加):
{
"mcpServers": {
"uuid": {
"command": "/path/to/uv",
"args": [
"--directory",
"/path/to/mcp-uuid",
"run",
"get-uuid.py"
]
}
}
}
注意:
/path/to/uv
には、uvコマンドの絶対パスを指定してください。
2. 使用可能なツール
このMCPサーバーは以下のツールを提供します:
get_uuid
- 説明:新しいUUIDを生成します
- 入力パラメータ:なし
- 使用例:
Claude Desktopで以下のように入力することで、新しいUUIDを生成できます:
ランダムなIDを生成してください
すると、Claudeは内部的にMCPツールを呼び出し、新しいUUIDを生成して返します。
生成されたランダムなIDは次の通りです: eccf34af-1617-4f61-b148-e900bc1d3d00
Related Servers
MCP-Compose
Orchestration tool for managing multiple MCP servers with a Docker Compose-style interface and a unified HTTP proxy.
Interactive Feedback MCP
An MCP server for AI-assisted development tools like Cursor and Claude, supporting interactive feedback workflows with AI.
Authless Remote MCP Server
An authentication-free, remote MCP server designed for deployment on Cloudflare Workers.
bevy_brp_mcp
An MCP server for AI coding assistants to control, inspect, and modify Bevy applications using the Bevy Remote Protocol (BRP).
pyATS
Interact with network devices using Cisco's pyATS and Genie libraries for model-driven automation.
Smithery Reference Servers
A collection of reference implementations for Model Context Protocol (MCP) servers in Typescript and Python, demonstrating MCP features and SDK usage.
MCP JSON
A collection of servers for file system operations, Google search, web automation, and executing terminal commands.
MCP Documentation Server
Integrates LLM applications with documentation sources using the Model Context Protocol.
Remote MCP Server (Authless)
An example of a remote MCP server deployable on Cloudflare Workers, without authentication.
MCP Arduino Server
An MCP server for the Arduino CLI, offering tools to manage sketches, boards, libraries, and files.