ops-mcp
ops-mcpは、Go言語で構築されたMCPサーバーで、インスタンスやイメージの管理を行うためのツールです。ユーザーは、特定のコマンドを実行することで、インスタンスの作成やリスト表示が可能です。設定はJSON形式で行い、環境変数を適切に設定する必要があります。初期段階では、ClaudeやMCPの使用経験がない開発者にとっても、柔軟性があり提案を受け入れる姿勢があります。
GitHubスター
2
ユーザー評価
未評価
お気に入り
0
閲覧数
15
フォーク
1
イシュー
1
README
ops-mcp
mcp server for ops
Build like normally.
Put this in your Claud config:
~/Library/Application Support/Claude/claude_desktop_config.json
Ensure your command is in the right path and more importantly the PATH
env is set to run.
{
"mcpServers": {
"ops-mcp": {
"command": "/Users/eyberg/go/src/github.com/nanovms/ops-mcp/ops-mcp",
"args": [],
"env": {
"HOME":"/Users/eyberg",
"LOGNAME":"eyberg",
"PATH":"/bin:/Users/eyberg/.ops/bin",
"SHELL":"/bin/zsh",
"USER":"eyberg"
}
}
}
}
Available tools:
List instances
List images
Instance create <image_name>
Instance create redis-server
Note: Very open to suggestions on how this all should work as this initial cut was done not having
ever used Claude or MCP.