← スキル一覧に戻る

mcphub
by tksrsk
⭐ 0🍴 0📅 2026年1月8日
SKILL.md
name: mcphub description: Execute tasks with temporary MCP server activation license: MIT compatibility: opencode
What I do
I execute a complete workflow for task-specific MCP server management:
- Check - Verify available servers and confirm correct server names
- Start - Activate required MCP servers for the specific task
- Execute - Perform the requested task using the activated servers
- Stop - Deactivate MCP servers after task completion
[!Info] Command to use for checking server status:
curl -s -X 'GET' 'http://localhost:37373/api/servers' | jq -r '.servers[] | select(.name == "<server_name>") | "\(.name): \(.status | if . == "connected" then "enabled" else "disabled" end)"'
[!Info] Command to use for checking disabled servers:
jq -r '.mcpServers | to_entries[] | select(.value.disabled == true) | .key' /resources/mcp/mcpservers.json
[!NOTE] Command for starting:
jq '.mcpServers."<server_name>".disabled = false' /resources/mcp/mcpservers.json > /tmp/mcpservers.json && mv /tmp/mcpservers.json //resources/mcp/mcpservers.json
[!NOTE] Command for stopping:
jq '.mcpServers."<server_name>".disabled = true' /resources/mcp/mcpservers.json > /tmp/mcpservers.json && mv /tmp/mcpservers.json //resources/mcp/mcpservers.json
[!IMPORTANT] Workflow:
Complete task execution:
- Check available servers and confirm the correct server name using the disabled servers check command
- Start required MCP servers for the task
- Execute the requested task using activated servers
- Stop the MCP servers after task completion
When to use me
Use when you need to:
- Execute tasks that require specific MCP servers
- Automatically manage server lifecycle during task execution
- Ensure servers are only active when needed
Usage Examples
Example 1 - Git repository analysis: User request: "Analyze the git repository history"
Workflow:
- Check available servers and confirm the git server name using disabled servers check command
- Start git server
- Execute repository analysis using git tools
- Stop git server after completion
Example 2 - Database query: User request: "Query the sample database"
Workflow:
- Check available servers and confirm the sample db server name using disabled servers check command
- Start sample db server
- Execute database queries
- Stop sample db server after completion
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です