Skip to content
VS Code

mcp firefly iii for VS Code

io.github.yakupemreyerli/mcp-firefly-iii

Security-first, self-hosted MCP server for Firefly III — 152 operations behind 5 scoped tools.

client:VS Code transport:stdio runtime:npm

Install mcp firefly iii in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "firefly-api-url",
      "description": "FIREFLY_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "firefly-api-token",
      "description": "FIREFLY_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "mcp-firefly-iii": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@yakupemreyerli/firefly-mcp"
      ],
      "env": {
        "FIREFLY_API_URL": "${input:firefly-api-url}",
        "FIREFLY_API_TOKEN": "${input:firefly-api-token}"
      }
    }
  }
}

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

mcp firefly iii in other clients