Installation überspringen. In unter 2 Minuten einsatzbereit.
Starte eine kostenlose Testphase auf cloud.anythingmcp.com, füge e-conomic mit einem Klick hinzu und richte deinen KI-Client (Claude, ChatGPT, Copilot oder Cursor) auf den erzeugten MCP-Endpoint. Kein Docker, kein git clone, keinerlei Entwicklungserfahrung nötig.
Summary
e-conomic — the Danish accounting standard (Visma group): customers, suppliers, booked and draft invoices, products, accounts and journals. REST API, authenticated with two separate tokens.
Frag einfach
Beispiel-Prompts für e-conomic
Klick auf einen Prompt, um ihn zu kopieren. In Claude, ChatGPT, Cursor, Gemini, Copilot oder OpenClaw einfügen — und gegen diesen Connector laufen lassen.
Claude ist KI und kann Fehler machen. Bitte Antworten gegenprüfen.
💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → e-conomic klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
e-conomic + Cursor
e-conomic — the Danish accounting standard (Visma group): customers, suppliers, booked and draft invoices, products, accounts and journals. REST API, authenticated with two separate tokens.
Voraussetzungen
Die vollständige Setup-Anleitung ist in den Connector eingebaut (im Store sichtbar, wenn du den Connector auswählst). Benötigte Umgebungsvariablen für diesen Connector:
ECONOMIC_APP_SECRET_TOKEN, ECONOMIC_AGREEMENT_GRANT_TOKEN
Schritt 1 — Zugangsdaten holen
e-conomic needs two tokens, and they come from different places.
- The App Secret Token identifies your application. You get it once, from e-conomic, when you register as a developer partner at
secure.e-conomic.com/secure/api1/requestaccess.aspx. It is the same for every customer you connect. - The Agreement Grant Token identifies the customer's agreement (their e-conomic company). The customer grants it by going through e-conomic's app-authorisation URL for your app; each customer produces a different one.
- Set
ECONOMIC_APP_SECRET_TOKENandECONOMIC_AGREEMENT_GRANT_TOKEN.
…(continued in the in-app connector instructions)
Schritt 2 — Adapter installieren
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
Schritt 3 — Connector in Cursor hinzufügen
Cursor liest MCP-Server aus ~/.cursor/mcp.json. Füge diesen Eintrag hinzu:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Hole deinen MCP API Key aus AnythingMCP → Profil → MCP API Keys → Neuer Key.
- Speichern und Cursor neu starten.
- Cursor → Einstellungen → MCP öffnen und prüfen, ob
e-conomicals "Connected" gelistet ist. - Chatten — alle
e-conomic-Tools sind aufrufbar.
Verfügbare Tools
| Tool | What it does |
|---|---|
e_conomic_get_self | Read the agreement this connector is bound to: the company name, its CVR number, the application name and the modules enabled |
e_conomic_list_customers | List customers with their number, name, CVR number, address, currency and payment terms |
e_conomic_get_customer | Read one customer by their customer number, with addresses, VAT zone, payment terms and the layout used for their invoices |
e_conomic_list_booked_invoices | List booked (posted, immutable) invoices with their number, date, due date, customer and totals |
e_conomic_get_booked_invoice | Read one booked invoice in full: every line with product, quantity, unit price and VAT, plus the totals and the remaining amount |
e_conomic_list_overdue_invoices | List booked invoices that are past their due date and still unpaid — the direct answer to 'who is late', without needing a filter |
e_conomic_list_draft_invoices | List unbooked invoice drafts |
e_conomic_list_suppliers | List suppliers with their number, name, CVR number, currency and payment terms, for the purchasing side of the ledger |
e_conomic_list_products | List products with their number, name, sales price, cost price, unit and the product group they belong to |
e_conomic_list_accounts | List the chart of accounts with each account's number, name, type, VAT account and current balance |
FAQ
Unterstützt Cursor benutzerdefinierte MCP-Server im Free-Tier? Ja — MCP ist auf Hobby, Pro und Business verfügbar.
Nächste Schritte
War dieser Guide hilfreich?