Skip to main content

FIBER — Optical operations platform MCP server for AI datacenters (gNMI telemetry, ML predictions, Digital Twin, NCCL-optical correlation).

Project description

FIBER MCP Server

mcp-name: io.github.liveplex-cpu/fiber

Model Context Protocol (MCP) server for the FIBER AI Infrastructure Reliability Platform.

Expose 24 curated FIBER endpoints as MCP tools (+ 3 write tools behind a flag) so Claude Code / Cursor / Claude Desktop / VS Code Copilot can query optical telemetry, run Digital Twin what-if scenarios, fetch ML predictions, and generate postmortems — directly from developer IDEs.

Why MCP?

Until now, using FIBER meant opening the dashboard or calling the REST API. With MCP, your AI assistant just… knows.

User (in Claude Code): "leaf-010 Ethernet1/43 의 72시간 RUL 어떻게 돼?"

Claude  → calls tool: fiber_ml_predict_rul(switch_name="leaf-010", port_name="Ethernet1/43")
         → returns: {"rul_hours": 0.01, "urgency": "imminent", "val_mae_hours": 2.99}

Claude (to user): "LSTM 모델이 잔존 수명을 0.01시간으로 예측합니다 —
                 즉시 교체 필요 (urgency: imminent). 모델 검증 MAE는 2.99h입니다."

Tools (24 read + 3 write)

Category Tools
Discovery fiber_health, fiber_info, fiber_cluster_overview, fiber_list_ports, fiber_port_detail_history, fiber_list_alerts, fiber_top_risky_ports
ML fiber_ml_rul_info, fiber_ml_predict_rul, fiber_ml_anomaly_scan
CPO fiber_cpo_bank_status
Digital Twin fiber_simulate_link_failure, fiber_digital_twin_monte_carlo, fiber_digital_twin_compare
Counterfactual fiber_counterfactual_port, fiber_counterfactual_cluster
NCCL fiber_nccl_summary, fiber_nccl_optical_correlation
Benchmark fiber_run_benchmark_harness
Sustainability fiber_sustainability, fiber_checkpoint_aware_windows
Diagnosis fiber_list_diagnosis_reports, fiber_get_diagnosis_report, fiber_postmortem_timeline
Write (optional) fiber_trigger_demo_scenario, fiber_ingest_nccl_events, fiber_create_rma

Safety model: all tools are read-only by default. Write tools only activate when FIBER_ENABLE_WRITE=1 env var is set. The server uses the same API key / RBAC as the underlying FIBER REST API, so giving an MCP client a viewer-role key is strictly safer than handing out admin credentials.

Install

Quick

./setup.sh

Manual

python3 -m venv ~/.fiber-mcp-venv
source ~/.fiber-mcp-venv/bin/activate
pip install -r requirements.txt

Configure

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "fiber": {
      "command": "/Users/you/.fiber-mcp-venv/bin/python3",
      "args": ["/path/to/hikari/sdks/mcp/fiber_mcp_server.py"],
      "env": {
        "FIBER_API_URL": "https://api.fiber.ac",
        "FIBER_API_KEY": "your-key-here",
        "FIBER_ENABLE_WRITE": "0"
      }
    }
  }
}

Restart Claude Desktop. In a new conversation ask: "What's FIBER's current cluster overview?" — Claude should call fiber_cluster_overview and respond with live data.

Claude Code (CLI)

Claude Code auto-discovers MCP servers configured in ~/.claude/mcp_servers.json:

{
  "fiber": {
    "command": "python3",
    "args": ["/path/to/fiber_mcp_server.py"],
    "env": {
      "FIBER_API_URL": "https://api.fiber.ac",
      "FIBER_API_KEY": "your-key"
    }
  }
}

Cursor

Cursor follows the same MCP spec. Add the server under Settings → MCP → Edit Config.

Test locally with MCP Inspector

npx -y @modelcontextprotocol/inspector python3 fiber_mcp_server.py

Opens a web UI where you can list tools and invoke them interactively.

Environment variables

Variable Default Purpose
FIBER_API_URL https://api.fiber.ac Base URL of your FIBER deployment
FIBER_API_KEY fiber-dev-key-change-in-production Bearer token (get via admin API)
FIBER_ENABLE_WRITE 0 Set to 1 to expose write tools
FIBER_HTTP_TIMEOUT 30 Per-request seconds

RBAC hints

  • For AI assistants on an engineer's laptop, create a viewer role API key. All 22 read tools work; no accidental mutations.
  • For an autonomous agent (e.g., oncall runbook runner), use operator + FIBER_ENABLE_WRITE=1.
  • For demo environments, pair admin + FIBER_ENABLE_WRITE=1 to unlock fiber_trigger_demo_scenario.

User flow examples

Natural-language queries your AI assistant now handles:

  • "How many CPO banks are in critical state?"
  • "Show me the top 10 risky ports by risk score"
  • "If we lose all 10 spine uplinks of leaf-010, how many GPUs go offline?"
  • "Run the benchmark harness with seed 42 and summarize"
  • "What's the checkpoint-aware maintenance window for the next 6 hours?"
  • "Correlate NCCL bandwidth drops with optical anomalies over the last 15 minutes"
  • "Generate a postmortem timeline for leaf-039 Ethernet1/43 covering the past 24h"

Architecture

 Claude Code / Cursor / Claude Desktop
              │
              │  MCP stdio (JSON-RPC)
              ▼
 ┌──────────────────────────┐
 │  fiber_mcp_server.py     │ ── Python stdio MCP server
 │                          │    (25 tools, httpx client)
 └────────────┬─────────────┘
              │  HTTPS Bearer auth
              ▼
 ┌──────────────────────────┐
 │  https://api.fiber.ac    │ ── FIBER FastAPI (~45 endpoints)
 │  or localhost:8000       │
 └──────────────────────────┘

Status

  • Curated 27 tools (24 read + 3 write)
  • stdio transport (SSE transport planned for remote/cloud use)
  • Read-only by default; write tools guarded by env var
  • Verified with @modelcontextprotocol/inspector

Roadmap

  • Streaming SSE endpoint for cloud deployment
  • OAuth device flow (replace long-lived API keys)
  • GraphQL subscription tool (live port updates)

License

Same as FIBER — see repo root.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fiber_mcp-1.0.1.tar.gz (12.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fiber_mcp-1.0.1-py3-none-any.whl (13.3 kB view details)

Uploaded Python 3

File details

Details for the file fiber_mcp-1.0.1.tar.gz.

File metadata

  • Download URL: fiber_mcp-1.0.1.tar.gz
  • Upload date:
  • Size: 12.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for fiber_mcp-1.0.1.tar.gz
Algorithm Hash digest
SHA256 750e88d006a592acb1da407f6a48a02cd790c464335d527c76d4131dc99498eb
MD5 088f42a41e409bfad371d34877cfcbc9
BLAKE2b-256 8147332ebc2e8fb115eb960162b7294f9717305fc15ea312ca04936a40e04642

See more details on using hashes here.

File details

Details for the file fiber_mcp-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: fiber_mcp-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 13.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for fiber_mcp-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1afc21525c8c22689dc61a1a8985d78e6caaab4e30a988d114c0d648415bdbe7
MD5 0cb3723242cda0d353613f6866bfde0f
BLAKE2b-256 e8433a134277bbb166e93a429eb44592b884efb40f8466bda170a008537a9da0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page