Wave MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Wave MCP ServerList all accounts in the chart of accounts"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 sseRelated MCP server: waveapps-mcp
Configuration
Variable | Description |
| Full Access token from Wave app settings |
| Set automatically by |
Tools & Operations
account — Chart of Accounts
Operation | Description |
| List accounts with optional type/subtype filters, pagination |
| Get account by ID |
| Create account (name, subtype, currency, description) |
| Update account fields |
| Archive an account |
| Client-side name search |
party — Customers & Vendors
Operation | Customer | Vendor |
| Yes | Yes |
| Yes | Yes |
| Yes | Read-only |
| Yes | Read-only |
| Yes | Read-only |
| 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 info + accounts grouped by type with counts |
| All accounts with name, type, balance, balanceInBusinessCurrency |
| 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)
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hvkshetry/wave-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server