Skip to content
VS Code

FibX for VS Code

finance.fibrous/fibx

Swap, transfer, portfolio and Aave V3 on Base, HyperEVM and Monad, with the FibX app as MCP Apps UI.

client:VS Code transport:stdio runtime:npm

Install FibX in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fibx-api-url",
      "description": "FIBX_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fibx-session-secret",
      "description": "FIBX_SESSION_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fibx-wc-project-id",
      "description": "FIBX_WC_PROJECT_ID",
      "password": true
    }
  ],
  "servers": {
    "fibx": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "fibx"
      ],
      "env": {
        "FIBX_API_URL": "${input:fibx-api-url}",
        "FIBX_SESSION_SECRET": "${input:fibx-session-secret}",
        "FIBX_WC_PROJECT_ID": "${input:fibx-wc-project-id}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

FibX in other clients