Skip the install. Get this working in under 2 minutes.
Start a free trial on cloud.anythingmcp.com, add the SAP Concur 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
Manage Concur expense reports, approvals, attendees, locations, users and travel itineraries from any AI agent. OAuth 2.0 refresh-token flow. Free developer sandbox on developer.concur.com.
Frag einfach
Beispiel-Prompts für SAP Concur
Klick auf einen Prompt, um ihn zu kopieren. In Claude, ChatGPT, Cursor, Gemini, Copilot oder OpenClaw einfügen — und gegen diesen Konnektor laufen lassen.
Claude ist KI und kann Fehler machen. Bitte Antworten gegenprüfen.
💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → SAP Concur klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
SAP Concur + Gemini
Manage Concur expense reports, approvals, attendees, locations, users and travel itineraries from any AI agent. OAuth 2.0 refresh-token flow. Free developer sandbox on developer.concur.com.
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:
CONCUR_REGION, CONCUR_CLIENT_ID, CONCUR_CLIENT_SECRET, CONCUR_REFRESH_TOKEN
Schritt 1 — Zugangsdaten holen
Setup:
- Sign up on https://developer.concur.com and create a Company Sandbox.
- Register a new app in the My Apps page → request scopes
EXPRPT,USER,LIST(and optionallyTRVPROfor travel). - Concur emails you a
Client ID+Client Secret. Generate aRefresh Tokenvia the Password Grant — needed once. - Decide your region:
us(https://us.api.concursolutions.com) oreu(https://eu.api.concursolutions.com). - Set the four env vars below.
Authentication: OAuth2 refresh-token grant. The adapter auto-refreshes the access token before expiry.
Rate limits: 25 requests/sec per refresh token (defaults). Bulk export endpoints have stricter quotas.
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 —SAP Concursollte 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 |
|---|---|
concur_list_reports | List expense reports for the connected company |
concur_get_report | Get the full detail of one expense report by its ID |
concur_list_report_entries | List the individual expense entries (line items) inside a given report |
concur_submit_report | Submit an expense report for approval |
concur_workflow_action | Approve, send-back or reject a submitted expense report |
concur_list_attendees | List meeting/expense attendees registered in the company directory |
concur_list_locations | List travel/expense locations (cities, regions) available to your tenant |
concur_list_users | List user accounts in the connected Concur tenant |
concur_get_user | Get one user profile by its Concur user ID |
concur_list_itineraries | List travel itineraries (Concur Travel) |
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?