fiber for VS Code
io.github.liveplex-cpu/fiber
Optical ops MCP for AI DCs — gNMI, ML RUL, Digital Twin, NCCL, SPARQL semantic
client:VS Code
transport:stdio
runtime:pypi
Install fiber in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fiber-api-url",
"description": "FIBER_API_URL",
"password": true
},
{
"type": "promptString",
"id": "fiber-api-key",
"description": "FIBER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "fiber-enable-write",
"description": "FIBER_ENABLE_WRITE",
"password": true
},
{
"type": "promptString",
"id": "fiber-mcp-tools-allowlist",
"description": "FIBER_MCP_TOOLS_ALLOWLIST",
"password": true
},
{
"type": "promptString",
"id": "fiber-http-timeout",
"description": "FIBER_HTTP_TIMEOUT",
"password": true
}
],
"servers": {
"fiber": {
"type": "stdio",
"command": "uvx",
"args": [
"fiber-mcp"
],
"env": {
"FIBER_API_URL": "${input:fiber-api-url}",
"FIBER_API_KEY": "${input:fiber-api-key}",
"FIBER_ENABLE_WRITE": "${input:fiber-enable-write}",
"FIBER_MCP_TOOLS_ALLOWLIST": "${input:fiber-mcp-tools-allowlist}",
"FIBER_HTTP_TIMEOUT": "${input:fiber-http-timeout}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs