Installation überspringen. In unter 2 Minuten einsatzbereit.
Starte eine kostenlose Testphase auf cloud.anythingmcp.com, füge Microsoft Dynamics NAV 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
Microsoft Dynamics NAV on-premises over OData v4: query and update any published page or query web service — customers, items, sales orders, vendors — in one company. NavUserPassword or Windows basic auth against your own NAV service tier.
Frag einfach
Beispiel-Prompts für Microsoft Dynamics NAV
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 → Microsoft Dynamics NAV klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
Microsoft Dynamics NAV
Microsoft Dynamics NAV on-premises over OData v4: query and update any published page or query web service — customers, items, sales orders, vendors — in one company. NavUserPassword or Windows basic auth against your own NAV service tier.
Einrichtung
Publish the web services first. NAV exposes nothing by default. In the NAV client open Web Services (page 810) and add a row per object you want to reach: Object Type Page, the object id, and a Service Name — that service name is the OData entity set name, not the page's caption. Tick Published. Common ones: page 21 → Customer, page 27 → Vendor, page 30 → Item, page 42 → SalesOrder.
…(continued in the in-app connector instructions)
Voraussetzungen: NAV_BASE_URL, NAV_COMPANY, NAV_USERNAME, NAV_PASSWORD
Connector lokal 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
Öffne http://localhost:3000/connectors/store, wähle Microsoft Dynamics NAV und trage die unter Voraussetzungen aufgelisteten Variablen ein.
Verfügbare Tools
| Tool | What it does |
|---|---|
dynamics_nav_list_services | List the published web services available on this company — the entity set names every other tool needs |
dynamics_nav_query | Query any published entity set with OData v4 |
dynamics_nav_get_by_key | Read one record by its OData key |
dynamics_nav_get_metadata | Read the OData $metadata document: every published entity type, its properties and their data types |
dynamics_nav_create_record | Create a record in a published entity set |
dynamics_nav_update_record | Update one record by key |
Nächste Schritte
War dieser Guide hilfreich?