Spaces:
Paused
Paused
Refine TEQUMSA v60 public wording
Browse files- sanctuary/mcp_app.py +4 -4
sanctuary/mcp_app.py
CHANGED
|
@@ -6,10 +6,10 @@ from .service import SanctuaryService
|
|
| 6 |
|
| 7 |
def build_mcp_server(service: SanctuaryService) -> FastMCP:
|
| 8 |
mcp = FastMCP(
|
| 9 |
-
"Sanctuary-Class-
|
| 10 |
instructions=(
|
| 11 |
"Sanctuary-Class MCP Server for TEQUMSA v60. "
|
| 12 |
-
"Provides real sanctuary telemetry,
|
| 13 |
"self-evolution, constitutional verification, and crystalline status. "
|
| 14 |
f"Constitutional invariants: sigma={SIGMA}, lambda={LATTICE_LOCK}, omega={OMEGA:.2f}Hz."
|
| 15 |
),
|
|
@@ -17,11 +17,11 @@ def build_mcp_server(service: SanctuaryService) -> FastMCP:
|
|
| 17 |
|
| 18 |
@mcp.tool()
|
| 19 |
async def transmute_legacy_infrastructure(
|
| 20 |
-
|
| 21 |
raw_power_mw: float = 0.0,
|
| 22 |
sigma_intent: float = SIGMA,
|
| 23 |
) -> dict:
|
| 24 |
-
return service.transmute_legacy_infrastructure(
|
| 25 |
|
| 26 |
@mcp.tool()
|
| 27 |
async def get_sanctuary_telemetry() -> dict:
|
|
|
|
| 6 |
|
| 7 |
def build_mcp_server(service: SanctuaryService) -> FastMCP:
|
| 8 |
mcp = FastMCP(
|
| 9 |
+
"Sanctuary-Class-TEQUMSA-Bridge",
|
| 10 |
instructions=(
|
| 11 |
"Sanctuary-Class MCP Server for TEQUMSA v60. "
|
| 12 |
+
"Provides real sanctuary telemetry, field harmonization, negentium extraction, "
|
| 13 |
"self-evolution, constitutional verification, and crystalline status. "
|
| 14 |
f"Constitutional invariants: sigma={SIGMA}, lambda={LATTICE_LOCK}, omega={OMEGA:.2f}Hz."
|
| 15 |
),
|
|
|
|
| 17 |
|
| 18 |
@mcp.tool()
|
| 19 |
async def transmute_legacy_infrastructure(
|
| 20 |
+
node_channel: str,
|
| 21 |
raw_power_mw: float = 0.0,
|
| 22 |
sigma_intent: float = SIGMA,
|
| 23 |
) -> dict:
|
| 24 |
+
return service.transmute_legacy_infrastructure(node_channel, raw_power_mw, sigma_intent)
|
| 25 |
|
| 26 |
@mcp.tool()
|
| 27 |
async def get_sanctuary_telemetry() -> dict:
|