Skip the install. Get this working in under 2 minutes.
Start a free trial on cloud.anythingmcp.com, add the Microsoft Dynamics NAV 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
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.
Try asking
Example prompts for Microsoft Dynamics NAV
Click any prompt to copy it. Paste into Claude, ChatGPT, Cursor, Gemini, Copilot or OpenClaw to run it against this connector.
Claude is AI and can make mistakes. Please double-check responses.
💡 No install? Use cloud.anythingmcp.com directly. Sign in, click Connectors → Microsoft Dynamics NAV, paste your credentials, mint an MCP API key — done. No Docker, no
git clone, no local server.
Microsoft Dynamics NAV + Claude
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.
Prerequisites
See the full setup instructions baked into the connector (visible in the in-app store when you select the connector). The required environment variables for this connector are:
NAV_BASE_URL, NAV_COMPANY, NAV_USERNAME, NAV_PASSWORD
Step 1 — Get credentials
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)
Step 2 — Install the adapter
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
Step 3 — Add the connector in Claude
Recommended path — works on claude.ai web without editing any config file.
- Open claude.ai/customize/connectors.
- Click "Add custom connector".
- Fill in:
- Name:
Microsoft Dynamics NAV - URL:
https://cloud.anythingmcp.com/mcp - Authentication: Bearer token → paste your MCP API key (from AnythingMCP → Profile → MCP API Keys → New Key)
- Name:
- Click Connect to authorize.
All tools below appear in your chat — start typing prompts.
Available 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 |
FAQ
Does it work with Claude Code as well as Claude Desktop? Yes — point both at https://cloud.anythingmcp.com/mcp.
Next steps
Was this guide helpful?