mcp-dynamics365-server
MCP Server for Microsoft Dynamics 365
Documentation
Dynamics 365 MCP Server ๐
Overview
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 user information, accounts, opportunities associated with an account, create and update accounts from Claude Desktop.
This project uses the `@modelcontextprotocol/sdk` library to implement the MCP server and tools, and it integrates with Dynamics 365 APIs for data operations.
List of Tools ๐ ๏ธ
| Tool Name | Description | Input | Output |
|---|---|---|---|
| `get-user-info` | Fetches information about the currently authenticated user. | None | User details including name, user ID, and business unit ID. |
| `fetch-accounts` | Fetches all accounts from Dynamics 365. | None | List of accounts in JSON format. |
| `get-associated-opportunities` | Fetches opportunities associated with a given account. | `accountId` (string, required) | List of opportunities in JSON format. |
| `create-account` | Creates a new account in Dynamics 365. | `accountData` (object, required) containing account details. | Details of the created account in JSON format. |
| `update-account` | Updates an existing account in Dynamics 365. | `accountId` (string, required), `accountData` (object, required) containing updated details. | Details of the updated account in JSON format. |
Prerequisites ๐
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
Configuration Steps โ๏ธ
Follow these steps to set up and run the project locally:
1. Clone the Repository
git clone https://github.com/your-repo/dynamics365-mcp-server.git
cd dynamics365-mcp-server2. Install Dependencies
npm install3. Configure Environment Variables
Create a .env file in the root of the project and add the following variables:
CLIENT_ID=your-client-id
CLIENT_SECRET=your-client-secret
TENANT_ID=your-tenant-id
D365_URL=https://your-org.crm.dynamics.com4. Compile TypeScript Files
npm run build4. Run MCP Server
node build\index.jsYou should see the following output:
Dynamics365 MCP server running on stdio...5. (Optional) Register your MCP Server with Claude Desktop
- Install Claude Desktop
- Navigate to Settings > Developer > Edit Config
- Edit claude_desktop_config.json
{
"mcpServers": {
"Dynamics365": {
"command": "node",
"args": [
""
],
"env": {
"CLIENT_ID": "",
"CLIENT_SECRET": "",
"TENANT_ID": "",
"D365_URL": "Dynamics 365 url"
}
}
}
}- Restart Claude Desktop
- Now you should be able to see the server tools in the prompt window

- Let's test a prompt by invoking tool - get-user-info

6. (Optional) Test tools using MCP Interceptor
- Run following command in terminal
npx @modelcontextprotocol/inspector node build/index.js
- Go to ๐ http://localhost:5173 ๐

- Now you can connect to server and terst all the tools!!
Debugging ๐
If you encounter issues, ensure the following:
If you encounter issues, ensure the following:
- The .env file is properly configured.
- The Azure AD application has the necessary permissions for Dynamics 365 APIs.
- The Dynamics 365 instance is accessible from - your environment.
- You can also add debug logs in the code to trace issues. For example:
console.error("Debugging: Loaded environment variables:", process.env);Contributing ๐ค
Contributions are welcome! Feel free to submit a pull request or open an issue for any bugs or feature requests.
To contribute:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Commit your changes and submit a pull request.
- We appreciate your contributions! ๐
Frequently asked questions
What is mcp-dynamics365-server?
mcp-dynamics365-server is MCP Server for Microsoft Dynamics 365
How do I install mcp-dynamics365-server?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is mcp-dynamics365-server open source?
Yes โ it is hosted on GitHub at https://github.com/srikanth-paladugula/mcp-dynamics365-server and has 15 stars.
Related MCP tools
Playwright MCP server TypeScript-based implementation. Trusted by 22000+ developers. Trusted by 22000+ developers. Trusted by 22000+ developers.
Official Notion MCP Server TypeScript-based implementation. Trusted by 3400+ developers. Trusted by 3400+ developers. Trusted by 3400+ developers.
Directory for Awesome MCP Servers TypeScript-based implementation. Trusted by 1900+ developers. Trusted by 1900+ developers.
๐งฉ MCP Gateway - A lightweight gateway service that instantly transforms existing MCP Servers and APIs into MCP servers with zero code changes.
MCP Aggregator, Orchestrator, Middleware, Gateway in one docker TypeScript-based implementation. Trusted by 1400+ developers.
MCP Server for kubernetes management commands TypeScript-based implementation. Trusted by 1100+ developers. Trusted by 1100+ developers.
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP