AgentHubAgentHub

fiber

MCP ServerMCP Registry官方收录

io.github.liveplex-cpu/fiber · v1.1.0

Optical ops MCP for AI DCs — gNMI, ML RUL, Digital Twin, NCCL, SPARQL semantic

概览

fiber 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "fiber": {
      "command": "python",
      "args": [
        "fiber-mcp"
      ],
      "env": {
        "FIBER_API_KEY": "<FIBER_API_KEY>"
      }
    }
  }
}

环境变量

FIBER_API_URL可选

Base URL of the FIBER deployment (e.g., https://api.fiber.ac or http://localhost:8000 for self-hosted).

FIBER_API_KEY必填secret

Bearer token for the FIBER API. Role determines which tools work: viewer (24 read tools), operator (+write), admin (all).

FIBER_ENABLE_WRITE可选

Set to 1 to expose write tools: demo trigger, NCCL ingest, RMA create. Defaults to read-only for safety.

FIBER_MCP_TOOLS_ALLOWLIST可选

(v1.0.2) Optional CSV of tool names. When set, only these tools are exposed — letting operators scope autonomous agents to a minimum surface (e.g. 'fiber_health,fiber_cluster_overview,fiber_list_alerts'). Empty = all tools exposed (default).

FIBER_HTTP_TIMEOUT可选

Per-request HTTP timeout in seconds. Increase if running Digital Twin Monte Carlo with iterations>1000.

相关资源

统一 Manifest

{
  "id": "io.github.liveplex-cpu/fiber",
  "type": "mcp-server",
  "version": "1.1.0",
  "displayName": "fiber",
  "description": "Optical ops MCP for AI DCs — gNMI, ML RUL, Digital Twin, NCCL, SPARQL semantic",
  "repository": {
    "url": "https://github.com/liveplex-cpu/hikari",
    "source": "github",
    "subfolder": "sdks/mcp"
  },
  "homepage": "https://fiber.ac",
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "fiber-mcp",
        "version": "1.1.0",
        "runtimeHint": "python",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "FIBER_API_URL",
            "description": "Base URL of the FIBER deployment (e.g., https://api.fiber.ac or http://localhost:8000 for self-hosted)."
          },
          {
            "name": "FIBER_API_KEY",
            "description": "Bearer token for the FIBER API. Role determines which tools work: viewer (24 read tools), operator (+write), admin (all).",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "FIBER_ENABLE_WRITE",
            "description": "Set to 1 to expose write tools: demo trigger, NCCL ingest, RMA create. Defaults to read-only for safety."
          },
          {
            "name": "FIBER_MCP_TOOLS_ALLOWLIST",
            "description": "(v1.0.2) Optional CSV of tool names. When set, only these tools are exposed — letting operators scope autonomous agents to a minimum surface (e.g. 'fiber_health,fiber_cluster_overview,fiber_list_alerts'). Empty = all tools exposed (default)."
          },
          {
            "name": "FIBER_HTTP_TIMEOUT",
            "description": "Per-request HTTP timeout in seconds. Increase if running Digital Twin Monte Carlo with iterations>1000."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.liveplex-cpu/fiber",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.liveplex-cpu%2Ffiber/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
fiber — MCP Server 安装与配置 · AgentHub