Skip to content
VS Code

arpeio mcp for VS Code

io.github.arpe-io/arpeio-mcp

Arpe.io MCP server for FastBCP, FastTransfer, LakeXpress, MigratorXpress

client:VS Code transport:stdio runtime:pypi

Install arpeio mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fastbcp-path",
      "description": "FASTBCP_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fasttransfer-path",
      "description": "FASTTRANSFER_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lakexpress-path",
      "description": "LAKEXPRESS_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "migratorxpress-path",
      "description": "MIGRATORXPRESS_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "arpeio-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "arpeio-mcp"
      ],
      "env": {
        "FASTBCP_PATH": "${input:fastbcp-path}",
        "FASTTRANSFER_PATH": "${input:fasttransfer-path}",
        "LAKEXPRESS_PATH": "${input:lakexpress-path}",
        "MIGRATORXPRESS_PATH": "${input:migratorxpress-path}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

arpeio mcp in other clients