Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for Wave accounting that provides tools for managing chart of accounts, invoices, customers, vendors, products, and reports via the Wave GraphQL API.

README.md

Wave MCP Server

MCP server for Wave accounting — 6 tools, 52 operations covering the full Wave GraphQL API.

Built with FastMCP and httpx. Mirrors the architecture of quickbooks-mcp.

Quick Start

# Install dependencies
uv sync

# Configure credentials
cp .env.example .env
# Edit .env — add your WAVE_ACCESS_TOKEN from Wave > Settings > API Applications

# Discover your business ID
uv run python auth_flow.py

# Run (STDIO for Claude Desktop / MCP clients)
uv run python server.py

# Run (SSE on port 3076)
uv run python server.py sse

Configuration

| Variable | Description | |----------|-------------| | WAVE_ACCESS_TOKEN | Full Access token from Wave app settings | | WAVE_BUSINESS_ID | Set automatically by auth_flow.py, or manually |

Tools & Operations

account — Chart of Accounts

| Operation | Description | |-----------|-------------| | list | List accounts with optional type/subtype filters, pagination | | get | Get account by ID | | create | Create account (name, subtype, currency, description) | | update | Update account fields | | archive | Archive an account | | search | Client-side name search |

party — Customers & Vendors

| Operation | Customer | Vendor | |-----------|----------|--------| | list | Yes | Yes | | get | Yes | Yes | | create | Yes | Read-only | | update | Yes | Read-only | | delete | Yes | Read-only | | search | Yes | Yes |

transaction — Invoices & Money Transactions

Invoice operations: list, get, create, update, delete, clone, send, approve, mark_sent, create_payment, search

Money transaction operations: create, bulk_create (BETA)

item — Products & Services

list, get, create, update, archive, search

reference — Lookup Data & Settings

list_businesses, get_business, get_user, list_currencies, list_countries, list_account_types, list_account_subtypes, list_sales_taxes, get_sales_tax, create_sales_tax, update_sales_tax, archive_sales_tax, list_estimates, get_estimate

report — Synthesized Summaries

| Operation | Description | |-----------|-------------| | business_summary | Business info + accounts grouped by type with counts | | account_balances | All accounts with name, type, balance, balanceInBusinessCurrency | | customer_balances | All customers with outstanding and overdue amounts |

MCP Client Configuration

Claude Desktop / Claude Code (STDIO)

{
  "mcpServers": {
    "wave": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/wave-mcp", "python", "server.py"]
    }
  }
}

SSE (remote / multi-client)

{
  "mcpServers": {
    "wave": {
      "url": "http://localhost:3076/sse"
    }
  }
}

Key Differences from QuickBooks MCP

| | Wave | QuickBooks | |-|------|-----------| | API | GraphQL | REST | | Auth | Static Bearer token | OAuth 2.0 + token refresh | | IDs | Base64 strings | Integers | | Pagination | Page-based (page/pageSize) | Offset-based (start_position) | | Search | Client-side name filtering | Server-side WHERE queries | | Vendors | Read-only | Full CRUD | | Reports | Synthesized from account data | Native report API | | Money Transactions | Create-only (BETA) | N/A |

Known Limitations

  • Vendors are read-only — no create/update/delete mutations in the Wave API
  • Money transactions are create-only (BETA) — no list/get/update/delete
  • No server-side text search — client-side filtering, limited to first ~250 results per query
  • No financial reports API — synthesized account balance summaries only
  • Estimates are read-only — no create/update mutations
  • Rate limit: 60 requests/minute (automatic exponential backoff on 429)

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Finance & Payments servers.