Shortcut MCP Server
ショートカットMCPサーバー
[!警告] これは WIP サーバーであり、意図したとおりに動作しない可能性があります。
Shortcut (旧 Clubhouse) と対話するための Model Context Protocol (MCP) サーバー。
特徴
プロジェクト、ストーリー、エピック、目標を表示する
ストーリーを検索する
新しいストーリー、叙事詩、目標を作成する
安全な操作のみ(更新や削除は不可)
Related MCP server: Shortcut.com MCP Server
設定
asdf を使用して Python をインストールします。
asdf install仮想環境を作成し、依存関係をインストールします。
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv pip install -e . # Install package in editable mode環境を設定します。
cp .env.example .env
# Edit .env and add your Shortcut API tokenサーバーを実行します。
python -m shortcut_mcpプロジェクト構造
shortcut-mcp/
├── src/
│ └── shortcut_mcp/ # Main package directory
│ ├── __init__.py # Package initialization
│ ├── __main__.py # Entry point
│ └── server.py # Server implementation
├── pyproject.toml # Project configuration
├── .tool-versions # ASDF version configuration
├── .pylintrc # Pylint configuration
└── README.mdClaude Desktopでの使用
Claude Desktop の設定に以下を追加します:
MacOS の場合 ( ~/Library/Application Support/Claude/claude_desktop_config.json ):
{
"mcpServers": {
"shortcut": {
"command": "python",
"args": ["-m", "shortcut_mcp"],
"env": {
"SHORTCUT_API_TOKEN": "your_token_here"
}
}
}
}Windows の場合 ( %AppData%\Claude\claude_desktop_config.json ):
{
"mcpServers": {
"shortcut": {
"command": "python",
"args": ["-m", "shortcut_mcp"],
"env": {
"SHORTCUT_API_TOKEN": "your_token_here"
}
}
}
}テスト
MCP Inspector を使用してサーバーをテストできます。
npx @modelcontextprotocol/inspector python -m shortcut_mcp安全機能
このサーバーは、安全な作成機能を備えた読み取り専用操作を実装します。
GET(読み取り)とPOST(作成)操作のみを許可します
既存データの変更や削除は行いません
すべての操作はAPIトークンの所有者に帰属します
発達
Python バージョン管理
このプロジェクトでは、Pythonのバージョン管理にasdfを使用しています。必要なPythonのバージョンは.tool-versionsで指定されています。
# Install Python with asdf
asdf install python
# The correct version will be automatically selected based on .tool-versionsコード品質
コード品質チェックにはpylintを使用します。次のコマンドで実行します。
pylint src/shortcut_mcppylint の設定は.pylintrcにあります。
Related MCP Connectors
Shortcut project management. Create, update, search stories and manage workflows.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
Related MCP Servers
- AlicenseBqualityFmaintenanceA Model Context Protocol server that provides tools for code modification and generation via Large Language Models, allowing users to create, modify, rewrite, and delete files using structured XML instructions.122MIT
- FlicenseNot gradedqualityDmaintenanceAn implementation of a Model Context Protocol server that allows Claude and other AI assistants to interact with Shortcut.com's ticket management system for searching, viewing, creating, and updating stories.-

Shortcut MCP Serverofficial
AlicenseBqualityFmaintenanceA Model Context Protocol (MCP) server that integrates Shortcut project management with AI tools like Cursor, Windsurf, and Claude Code, allowing direct access to Shortcut data via API token.569,647 npm98MIT- AlicenseBqualityDmaintenanceA Model Context Protocol server that provides structured workflow tools for managing software development projects through different complexity levels, offering specialized modes for project planning, design, implementation, and documentation.5214 npm2MIT