No install? Use cloud.anythingmcp.com directly.
Sign in, install the SAP Concur 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 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.
💡 Без установки? Используйте cloud.anythingmcp.com напрямую. Войдите, нажмите Connectors → SAP Concur, вставьте учётные данные, создайте MCP API key — готово. Без Docker, без
git clone, без локального сервера.
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.
Предварительные требования
Полные инструкции по настройке встроены в коннектор (видны в магазине при выборе коннектора). Требуемые переменные окружения:
CONCUR_REGION, CONCUR_CLIENT_ID, CONCUR_CLIENT_SECRET, CONCUR_REFRESH_TOKEN
Шаг 1 — Получите учётные данные
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.
Шаг 2 — Установите адаптер
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Шаг 3 — Добавьте коннектор в Gemini
Gemini CLI читает MCP-серверы из ~/.gemini/settings.json (или %APPDATA%\gemini\settings.json в Windows). Добавьте:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Получите MCP API key в AnythingMCP → Profile → MCP API Keys → New Key.
- Сохраните файл и перезапустите
gemini. - Запустите
/mcpв Gemini CLI —SAP Concurдолжен быть доступен. - Vertex AI Studio: передайте
https://cloud.anythingmcp.com/mcpв массивtoolsзапроса с тем же Bearer-заголовком.
Доступные инструменты
| 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
Поддерживают ли Gemini 1.5 Pro или 2.x MCP? Да — Gemini CLI ≥ 0.4 и Vertex AI tools API принимают MCP-коннекторы httpUrl с Bearer-заголовком.
Следующие шаги
Это руководство помогло?