MCP Dyamics365 Server MCP Server

The **Microsoft Dynamics 365 MCP Server** is a MCP server that provides tools to interact with Microsoft Dynamics 365 using the **Model Context

Local serverstdioTypeScript

What is the MCP Dyamics365 Server MCP server?

The Microsoft Dynamics 365 MCP Server is a MCP server that provides tools to interact with Microsoft Dynamics 365 using the Model Context Protocol(MCP) by Anthorpic. It allows users to perform various operations such as retrieving. That is what the mcp dyamics365 server mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

Getting it running

@modelcontextprotocol/inspector on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

The tools it exposes

The server publishes 5 tools. What each one is for:

  • get-user-info — Fetches information about the currently authenticated user
  • fetch-accounts — Fetches all accounts from Dynamics 365
  • get-associated-opportunities — Fetches opportunities associated with a given account
  • create-account — Creates a new account in Dynamics 365
  • update-account — Updates an existing account in Dynamics 365

What it needs from you

Configuration is passed through the environment: CLIENT_ID, CLIENT_SECRET, TENANT_ID, D365_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Before setting up the project, ensure you have the following installed: - Node.js (v16 or higher) - NPM (Node Package Manager) - A Dynamics 365 instance with API access - Azure Active Directory (AAD) application configured for Dynamics 365 API access ---

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MCP Dyamics365 Server's toolset — get-user-info, fetch-accounts, get-associated-opportunities and 2 more — is a fair guide to whether it matches your workflow. It is maintained by srikanth-paladugula; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
get-user-infoFetches information about the currently authenticated user.
fetch-accountsFetches all accounts from Dynamics 365.
get-associated-opportunitiesFetches opportunities associated with a given account.
create-accountCreates a new account in Dynamics 365.
update-accountUpdates an existing account in Dynamics 365.

How to install the MCP Dyamics365 Server MCP server

{
    "mcpServers": {
        "Dynamics365": {
            "command": "node",
            "args": [
                "<Path to your MCP server build file ex: rootfolder/build/index.js>"
            ],
            "env": {
                "CLIENT_ID": "<D365 Client Id>",
                "CLIENT_SECRET": "<D365 Client Secret>",
                "TENANT_ID": "<D365 Tenant ID>",
                "D365_URL": "Dynamics 365 url"
            }
        }
    }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

Before setting up the project, ensure you have the following installed: - Node.js (v16 or higher) - NPM (Node Package Manager) - A Dynamics 365 instance with API access - Azure Active Directory (AAD) application configured for Dynamics 365 API access ---

VariableDescriptionRequired
CLIENT_IDConfiguration value read at startup.Optional
CLIENT_SECRETCredential the server authenticates with.Yes
TENANT_IDConfiguration value read at startup.Optional
D365_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use MCP Dyamics365 Server to get-user-info.
  • Use MCP Dyamics365 Server to fetch-accounts.
  • Use MCP Dyamics365 Server to get-associated-opportunities.

Frequently asked questions

It connects MCP Dyamics365 Server to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (get-user-info, fetch-accounts, get-associated-opportunities, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Dyamics365 Server directly.