Wave MCP Server
Enables Wave invoicing operations including listing invoices, retrieving details, and generating branded PDFs directly from AI assistants.
README
Wave MCP Server
MCP server for Wave invoicing with built-in PDF generation. Pull invoice data from your Wave account and generate branded PDF invoices—all from Claude or any MCP-compatible AI.
Features
- 📋 List invoices from your Wave account
- 🔍 Get invoice details with customer info and line items
- 👥 List customers from Wave
- 📄 Generate PDF invoices with your branding
No Python required. Pure TypeScript with PDFKit.
Quick Start
git clone https://github.com/YOUR_USERNAME/wave-mcp-server.git
cd wave-mcp-server
npm install
npm run build
cp .env.example .env
# Edit .env with your credentials
Getting Wave API Credentials
- Go to developer.waveapps.com
- Create a new application
- Generate a Full Access token
- Copy your Business ID from the dashboard
Configuration
Edit .env with your credentials:
WAVE_API_KEY=your_full_access_token
WAVE_BUSINESS_ID=your_business_id
BUSINESS_NAME=Your Business Name
# See .env.example for all options
Adding Your Logo
Place your logo at assets/logo.png. Recommended size: 200x200px or larger, square aspect ratio.
Claude Desktop Setup
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"wave": {
"command": "node",
"args": ["/path/to/wave-mcp-server/dist/index.js"]
}
}
}
Or with inline environment variables:
{
"mcpServers": {
"wave": {
"command": "node",
"args": ["/path/to/wave-mcp-server/dist/index.js"],
"env": {
"WAVE_API_KEY": "your_key",
"WAVE_BUSINESS_ID": "your_id",
"BUSINESS_NAME": "Your Business Name",
"LOGO_PATH": "/path/to/assets/logo.png"
}
}
}
}
Environment Variables
| Variable | Required | Description |
|---|---|---|
WAVE_API_KEY |
Yes | Your Wave full-access token |
WAVE_BUSINESS_ID |
Yes | Your Wave business ID |
BUSINESS_NAME |
No | Business name on invoices |
BUSINESS_ADDRESS1 |
No | Address line 1 |
BUSINESS_ADDRESS2 |
No | Address line 2 |
BUSINESS_PHONE |
No | Phone number |
LOGO_PATH |
No | Path to logo PNG (default: ./assets/logo.png) |
INVOICE_OUTPUT_DIR |
No | Output directory for PDFs (default: ./invoices) |
Available Tools
| Tool | Description |
|---|---|
list_invoices |
List invoices with pagination |
get_invoice |
Get full invoice details |
list_customers |
List all customers |
export_invoice_json |
Export invoice as JSON |
generate_invoice_pdf |
Generate branded PDF from Wave invoice |
Usage Examples
Once configured, ask Claude:
- "List my Wave invoices"
- "Generate a PDF for invoice #1234"
- "Show me the details for my latest invoice"
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.