MCP サーバー ダイスロール (mcp-server-diceroll)
aikiyy
README
MCP サーバー ダイスロール (mcp-server-diceroll)
シンプルな MCP (Model Calling Protocol) サーバーのデモプロジェクトです。このサーバーはダイスロール機能と基本的な数値演算機能を提供します。
機能
- 数値の加算
- カスタマイズ可能なダイスロール(サイコロの面数と振る回数を指定可能)
- 動的な挨拶メッセージ生成
要件
- Python 3.12 以上
- mcp ライブラリ 1.6.0 以上
- uv (Python パッケージマネージャー)
インストール
- リポジトリをクローンします:
git clone https://github.com/yourusername/mcp-server-diceroll.git
cd mcp-server-diceroll
- uvがインストールされていない場合は、インストールします:
curl -sSf https://astral.sh/uv/install.sh | bash
- uvを使用して仮想環境を作成し、依存関係をインストールします:
uv venv
source .venv/bin/activate # macOS/Linuxの場合
# または
.venv\Scripts\activate # Windowsの場合
uv pip install -e .
使用方法
サーバーを起動するには:
python server.py
または、uvを使用して実行することもできます:
uv run python server.py
サーバーが起動すると、以下のツールが利用可能になります:
- add - 2つの数値を加算します
- roll_dice - サイコロを振ります(デフォルトは6面体のサイコロを1回)
- greeting://{name} - 指定された名前に対する挨拶メッセージを生成します
参考資料
- サイコロから始めるModel Context Protocol (MCP): 生成AIと外部ツールを繋ぐためのプロトコル
- Anthropic MCP公式発表
- modelcontextprotocol/python-sdk
例
サーバーにリクエストを送信する方法については、MCP クライアントのドキュメントを参照してください。
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.