loading…
Search for a command to run...
loading…
An MCP server for Sakura Cloud that enables interaction with cloud resources and object storage. It allows users to manage Sakura Cloud infrastructure through n
An MCP server for Sakura Cloud that enables interaction with cloud resources and object storage. It allows users to manage Sakura Cloud infrastructure through natural language interfaces using the Model Context Protocol.
[!CAUTION] 本プロジェクトは提供を終了しました
2026年4月13日をもって、本リポジトリはアーカイブされました。
本プロジェクトはすでにメンテナンスを終了しており、
今後、機能追加、バグ修正、ならびにセキュリティアップデートは一切提供されません。本プロジェクトの新規利用および継続利用は推奨されません。
sacloud/sacloud-mcpはさくらのクラウド向けMCPサーバです。
git clone https://github.com/sacloud/sacloud-mcp.git
より詳細なインストール方法・使用方法については、uvのドキュメントを参照してください。
curl -LsSf https://astral.sh/uv/install.sh | sh
uv sync
任意のLLMへMCPをインストールする。 一例としてclaude desktopでの設定を示す。
claude desktopの設定ファイルに以下を追記する。 なお、設定ファイルの位置はOS毎に以下の通りである。
~/Library/Application\ Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"sacloud": {
"command": "${HOME}/.local/bin/uv",
"args": [
"--directory",
"<<MCPサーバーのルートディレクトリ>>/src",
"run",
"main.py"
],
"env": {
"<<環境変数1>>": "<<値をコピーしてここへ貼り付ける>>",
"<<環境変数2>>": "<<値をコピーしてここへ貼り付ける>>"
}
}
}
}
<<>>で示された要素について、以下を参考に適宜置き換える。
/Users/user/Source/sacloud-mcp"ACCESS_TOKEN": "<<値をコピーしてここへ貼り付ける>>""ACCESS_TOKEN_SECRET": "<<値をコピーしてここへ貼り付ける>>""OBJECTSTORAGE_ACCESS_KEY_ID": "<<値をコピーしてここへ貼り付ける>>""OBJECTSTORAGE_SECRET_ACCESS_KEY": "<<値をコピーしてここへ貼り付ける>>"tests/conftest.pyには、全テストファイルで利用可能なfixtureが定義されており、
すべてのテストファイルから明示的なimport不要で利用できる。
環境変数から認証情報を取得するため、テスト実行前にACCESS_TOKENとACCESS_TOKEN_SECRET設定する
export ACCESS_TOKEN=xxxxxxxxxxxxxxxxxxxx
export ACCESS_TOKEN_SECRET=xxxxxxxxxxxxxxxxxxxx
export OBJECTSTORAGE_ACCESS_KEY_ID=xxxxxxxxxxxxxxxxxxxx
export OBJECTSTORAGE_SECRET_ACCESS_KEY=xxxxxxxxxxxxxxxxxxxx
uv run pytest
sacloud-mcp Copyright (C) 2025- The sacloud/sacloud-mcp authors.
This project is published under Apache 2.0 License.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"sacloud-mcp": {
"command": "npx",
"args": []
}
}
}