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 Server with GitHub OAuth
A remote MCP server with built-in GitHub OAuth support, designed for deployment on Cloudflare Workers.
Claude Desktop
An MCP server for interacting with Anthropic's Claude on the desktop, based on a DeepLearning.ai course example.
DocGen MCP Server
Automated documentation generator from source files on Google Drive and GitHub.
Photoshop MCP Server
An MCP server for integrating with and automating Adobe Photoshop using the photoshop-python-api.
OpenDia
An open-source server that exposes browser functions via MCP, allowing AI models to interact with browser capabilities.
nUR MCP Server
An intelligent robot control middleware for natural language interaction with industrial robots, powered by LLMs. It integrates with Universal Robots and supports real-time, multi-robot control.
ProjectFlow
A workflow management system for AI-assisted development with MCP support, featuring flexible storage via file system or PostgreSQL.
PGYER
MCP Server for PGYER platform, supports uploading, querying apps, etc.
Agent Forge
A platform for creating and managing AI agents with specific personalities and simulating their responses. Requires a DeepSeek API key.
Chrome Debug MCP
This MCP allows you to record browser interactions with a chrome extension that include screenshots and console logs. The data is then saved to a local database that feeds the data to an AI system like claude code to search.