refactor: update default MCP ports to 9001, fix connect docstrings, rename Cline label to Roo Code / Cline

This commit is contained in:
Hitonabi
2026-06-25 22:39:42 +02:00
parent b08e867c1a
commit ef93b7f919
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ System-Status lesen. Spricht die MC-2-REST-API (/api/*).
Damit ist Hermes echte Control-Plane des Stacks (Plan: „MC-Mgmt-MCP, damit Hermes
den Stack selbst steuert"). Läuft typischerweise lokal auf der Box neben Hermes.
Env: MC_URL (default http://127.0.0.1:9000), MC_TOKEN (optional).
Env: MC_URL (default http://127.0.0.1:9001), MC_TOKEN (optional).
Install: pip install mcp httpx
"""
@@ -19,7 +19,7 @@ import os
import httpx
from mcp.server.fastmcp import FastMCP
MC_URL = os.environ.get("MC_URL", "http://127.0.0.1:9000").rstrip("/")
MC_URL = os.environ.get("MC_URL", "http://127.0.0.1:9001").rstrip("/")
MC_TOKEN = os.environ.get("MC_TOKEN", "")
mcp = FastMCP("mission-control-stack")