Bexio MCP Server

Manage invoices, contacts, projects, time tracking, and 300+ more tools through AI conversation or workflow automation.

Local serverstdioGo

What is the Bexio MCP server?

Bexio MCP server exists for a simple reason — assistants are far more useful when they can act on Bexio directly instead of describing what you should do. Manage invoices, contacts, projects, time tracking, and 300+ more tools through AI conversation or workflow automation.

Setting it up

The server ships on npm as @promptpartner/bexio-mcp-server, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What the assistant can call

Once Bexio is connected, these are the calls the assistant has available:

  • Accounting — The Accounting tool exposed by this server

Configuration and credentials

You will need 4 environment variables: BEXIO_API_TOKEN, BEXIO_API_TOKENS, BEXIO_DEFAULT_COMPANY, BEXIO_BASE_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the bexio mcp server does with a few real requests.

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Bexio's toolset — Accounting — is a fair guide to whether it matches your workflow. It is maintained by promptpartner; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Bexio's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
AccountingThe Accounting tool exposed by this server.

How to install the Bexio MCP server

{
  "mcpServers": {
    "bexio": {
      "command": "npx",
      "args": ["@promptpartner/bexio-mcp-server"],
      "env": {
        "BEXIO_API_TOKEN": "your-token-here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
BEXIO_API_TOKENCredential the server authenticates with.Yes
BEXIO_API_TOKENSCredential the server authenticates with.Yes
BEXIO_DEFAULT_COMPANYConfiguration value read at startup.Optional
BEXIO_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Bexio to Accounting.

Frequently asked questions

It connects Bexio to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Accounting) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Bexio directly.