No install? Use cloud.anythingmcp.com directly.
Sign in, install the Sage Business Cloud Accounting in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
TL;DR
Manage Sage Business Cloud Accounting (contacts, products, invoices, bank accounts, transactions) from any AI agent. 9 tools, OAuth2 auth.
💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → Sage Business Cloud Accounting klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
Sage Business Cloud Accounting + Gemini
Manage Sage Business Cloud Accounting (contacts, products, invoices, bank accounts, transactions) from any AI agent. 9 tools, OAuth2 auth.
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:
SAGE_CLIENT_ID, SAGE_CLIENT_SECRET, SAGE_REFRESH_TOKEN
Schritt 1 — Zugangsdaten holen
This connector wraps the Sage Business Cloud Accounting API v3.1 (api.accounting.sage.com).
Setup — OAuth2:
- Register at https://developer.sage.com/accounting → Create app. Set callback URL.
- Complete the auth flow at
https://www.sageone.com/oauth2/auth/central?response_type=code&client_id=...&redirect_uri=...&scope=full_access&country=gb(use the country code matching your Sage subscription — gb, us, ca, de, fr, ie, es). - Exchange the code at
https://oauth.accounting.sage.com/token. - Set
SAGE_CLIENT_ID,SAGE_CLIENT_SECRET,SAGE_REFRESH_TOKEN.
Authentication: OAuth2 — engine handles refresh. Sends Authorization: Bearer ${ACCESS_TOKEN}.
…(continued in the in-app connector instructions)
Schritt 2 — Adapter installieren
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Schritt 3 — Connector in Gemini hinzufügen
Gemini CLI liest MCP-Server aus ~/.gemini/settings.json (oder %APPDATA%\gemini\settings.json unter Windows). Hinzufügen:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "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
geminineu starten. /mcpin Gemini CLI ausführen —Sage Business Cloud Accountingsollte als verfügbar gelistet sein.- Vertex AI Studio:
https://cloud.anythingmcp.com/mcpimtools-Array der Anfrage mit demselben Bearer-Header übergeben.
Verfügbare Tools
| Tool | What it does |
|---|---|
sage_list_businesses | List all businesses the authenticated user can access |
sage_list_contacts | List contacts (customers + vendors) |
sage_get_contact | Get one contact by ID with full address + tax info |
sage_create_contact | Create a contact |
sage_list_sales_invoices | List sales (customer) invoices |
sage_get_sales_invoice | Get one sales invoice with lines + applied payments |
sage_list_products | List products and services |
sage_list_bank_accounts | List bank accounts |
sage_list_transactions | List bank transactions on an account |
FAQ
Unterstützen Gemini 1.5 Pro oder 2.x MCP? Ja — Gemini CLI ≥ 0.4 und die Vertex AI Tools API akzeptieren MCP httpUrl-Connectors mit Bearer-Header.
Nächste Schritte
War dieser Guide hilfreich?