Skip to content
VS Code

nexflow smf for VS Code

io.github.moejeaux/nexflow-smf

Smart Meta-Facilitator for x402 payments on Base: route, verify, and settle payments.

client:VS Code transport:stdio runtime:npm

Install nexflow smf in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nexflow-api-key",
      "description": "NEXFLOW_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nexflow-base-url",
      "description": "NEXFLOW_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "nexflow-smf": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@nexflow-smf/smf"
      ],
      "env": {
        "NEXFLOW_API_KEY": "${input:nexflow-api-key}",
        "NEXFLOW_BASE_URL": "${input:nexflow-base-url}"
      }
    }
  }
}

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

nexflow smf in other clients