Skip the install. Get this working in under 2 minutes.
Start a free trial on cloud.anythingmcp.com, add the Lexware Office in one click, then point your AI client (Claude, ChatGPT, Copilot or Cursor) at the generated MCP endpoint. No Docker, no git clone, zero engineering experience required.
Summary
Lexware Office (formerly lexoffice) — Germany's most-used SMB bookkeeping app. Read and create contacts, invoices, quotations, credit notes, vouchers and articles, and pull the voucher list that drives the Buchhaltung. Public REST API v1, bearer token.
Try asking
Example prompts for Lexware Office
Click any prompt to copy it. Paste into Claude, ChatGPT, Cursor, Gemini, Copilot or OpenClaw to run it against this connector.
Claude is AI and can make mistakes. Please double-check responses.
💡 No install? Use cloud.anythingmcp.com directly. Sign in, click Connectors → Lexware Office, paste your credentials, mint an MCP API key — done. No Docker, no
git clone, no local server.
Lexware Office + Gemini
Lexware Office (formerly lexoffice) — Germany's most-used SMB bookkeeping app. Read and create contacts, invoices, quotations, credit notes, vouchers and articles, and pull the voucher list that drives the Buchhaltung. Public REST API v1, bearer token.
Prerequisites
See the full setup instructions baked into the connector (visible in the in-app store when you select the connector). The required environment variables for this connector are:
LEXWARE_API_KEY
Step 1 — Get credentials
Getting a token
- Sign in to Lexware Office (lexoffice) with an account on a paid plan — the API is not available on the free tier.
- Open Einstellungen → Erweiterungen → Öffentliche API and create a new access token. The token is shown once; store it immediately.
- Set
LEXWARE_API_KEYto that value. It is a personal token scoped to the one company (Mandant) it was created in; a tax adviser handling several clients needs one connector per client.
…(continued in the in-app connector instructions)
Step 2 — Install the adapter
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Step 3 — Add the connector in Gemini
Gemini CLI reads MCP servers from ~/.gemini/settings.json (or %APPDATA%\gemini\settings.json on Windows). Add:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Get your MCP API key from AnythingMCP → Profile → MCP API Keys → New Key.
- Save the file and restart
gemini. - Run
/mcpinside the Gemini CLI —Lexware Officeshould be listed as available. - Vertex AI Studio: pass
https://cloud.anythingmcp.com/mcpto thetoolsarray of your request with the same Bearer header.
Available tools
| Tool | What it does |
|---|---|
lexware_office_get_profile | Read the connected company profile: company name, tax number, VAT id, the connection's user id and the small-business (Kleinunternehmer) fla |
lexware_office_list_contacts | List contacts (customers and vendors) with paging |
lexware_office_get_contact | Read one contact by its Lexware id, including all addresses, the customer/vendor roles, contact persons, e-mail addresses and phone numbers |
lexware_office_list_vouchers | Search the voucher list — the bookkeeping view across sales invoices, purchase invoices, credit notes, down payments and receipts |
lexware_office_get_invoice | Read one sales invoice in full: header, addressee, every line item with net/gross and tax rate, the total amounts, the payment terms and the |
lexware_office_get_quotation | Read one quotation (Angebot) in full, including its line items, totals, validity date and current status |
lexware_office_get_credit_note | Read one credit note (Rechnungskorrektur) in full: the invoice it corrects, its line items and its totals |
lexware_office_list_articles | List articles (Artikel) from the product catalogue, optionally narrowed by article number or type, so an invoice line can reference a real p |
lexware_office_list_countries | List the country codes Lexware Office accepts in an address, with their tax classification (intra-community, third country) |
lexware_office_create_contact | Create a new contact with the customer and/or vendor role |
lexware_office_create_invoice | Create a sales invoice |
FAQ
Does Gemini 1.5 Pro or 2.x support MCP? Yes — Gemini CLI ≥ 0.4 and Vertex AI tools API both accept MCP httpUrl connectors with Bearer headers.
Next steps
Was this guide helpful?