Skip to main content
Glama

Dynamics 365 MCP Server

Dynamics 365 MCP 服务器🚀

Node.jsTypeScript微胶囊钙执照

概述

Microsoft Dynamics 365 MCP 服务器是一款 MCP 服务器,它提供使用 Anthorpic 的模型上下文协议 (MCP)与 Microsoft Dynamics 365 交互的工具。它允许用户执行各种操作,例如检索用户信息、帐户、与帐户关联的业务机会,以及从Claude Desktop创建和更新帐户。

该项目使用@modelcontextprotocol/sdk库实现MCP服务器和工具,并与Dynamics 365 API集成进行数据操作。


工具列表🛠️

工具名称描述输入输出
get-user-info获取有关当前已验证用户的信息。没有任何用户详细信息包括姓名、用户 ID 和业务部门 ID。
fetch-accounts从 Dynamics 365 获取所有帐户。没有任何JSON 格式的账户列表。
get-associated-opportunities获取与给定帐户相关的机会。accountId (字符串,必需)JSON 格式的机会列表。
create-account在 Dynamics 365 中创建新帐户。accountData (对象,必需)包含帐户详细信息。已创建帐户的详细信息(JSON 格式)。
update-account更新 Dynamics 365 中的现有帐户。accountId (字符串,必需)、 accountData (对象,必需)包含更新的详细信息。更新后的帐户详细信息(JSON 格式)。

先决条件📝

在设置项目之前,请确保已安装以下内容:

  • Node.js (v16 或更高版本)
  • NPM (节点包管理器)
  • 具有 API 访问权限的 Dynamics 365 实例
  • 为 Dynamics 365 API 访问配置的 Azure Active Directory (AAD) 应用程序

配置步骤⚙️

按照以下步骤在本地设置并运行项目:

1.克隆存储库

git clone https://github.com/your-repo/dynamics365-mcp-server.git cd dynamics365-mcp-server

2.安装依赖项

npm install

3.配置环境变量

在项目根目录中创建一个 .env 文件并添加以下变量:

CLIENT_ID=your-client-id CLIENT_SECRET=your-client-secret TENANT_ID=your-tenant-id D365_URL=https://your-org.crm.dynamics.com

4. 编译 TypeScript 文件

npm run build

4. 运行 MCP 服务器

node build\index.js

您应该看到以下输出:

Dynamics365 MCP server running on stdio...

5. (可选)使用 Claude Desktop 注册您的 MCP 服务器

  • 安装Claude Desktop
  • 导航至“设置”>“开发者”>“编辑配置”
  • 编辑 claude_desktop_config.json
{ "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" } } } }
  • 重启Claude桌面
  • 现在您应该能够在提示窗口中看到服务器工具Claude 服务器工具
  • 让我们通过调用工具 get-user-info 来测试提示获取用户工具测试

6.(可选)使用 MCP Interceptor 测试工具

  • 在终端中运行以下命令
npx @modelcontextprotocol/inspector node build/index.js

拦截器指令

调试🐛

如果遇到问题,请确保以下事项:

如果遇到问题,请确保以下事项:

  • .env 文件已正确配置。
  • Azure AD 应用程序具有 Dynamics 365 API 所需的权限。
  • 可从您的环境访问 Dynamics 365 实例。
  • 您还可以在代码中添加调试日志来追踪问题。例如:
console.error("Debugging: Loaded environment variables:", process.env);

贡献🤝

欢迎贡献代码!欢迎提交 Pull 请求或创建 Issue,以解决任何 Bug 或提出任何功能请求。

贡献:

  • 分叉存储库。
  • 为您的功能或错误修复创建一个新的分支。
  • 提交您的更改并提交拉取请求。
  • 感谢您的贡献!😊

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

模型上下文协议服务器使 Claude Desktop 能够与 Microsoft Dynamics 365 交互,允许用户通过自然语言检索信息、创建和更新帐户以及管理机会。

  1. 概述
    1. 工具列表🛠️
      1. 先决条件📝
        1. 配置步骤⚙️
          1. 1.克隆存储库
          2. 2.安装依赖项
          3. 3.配置环境变量
          4. 编译 TypeScript 文件
          5. 运行 MCP 服务器
          6. (可选)使用 Claude Desktop 注册您的 MCP 服务器
          7. 6.(可选)使用 MCP Interceptor 测试工具
        2. 调试🐛
          1. 如果遇到问题,请确保以下事项:
            1. 贡献🤝

              Related MCP Servers

              • -
                security
                A
                license
                -
                quality
                A Model Context Protocol server that allows Claude to interact with Linear's API for managing teams, issues, projects, and cycles.
                Last updated -
                13
                1
                TypeScript
                MIT License
              • -
                security
                A
                license
                -
                quality
                A Model Context Protocol server that enables Claude to interact with the ConnectWise Manage API to perform operations like retrieving, creating, updating, and deleting tickets, companies, contacts, and other entities.
                Last updated -
                JavaScript
                MIT License
                • Apple
              • -
                security
                A
                license
                -
                quality
                A Model Context Protocol server that enables AI assistants like Claude to interact with Zulip workspaces, supporting capabilities such as posting messages, listing channels, sending direct messages, and accessing conversation history.
                Last updated -
                JavaScript
                Apache 2.0
              • -
                security
                F
                license
                -
                quality
                A Model Context Protocol server that allows Claude Desktop to perform document operations on Microsoft Word, Excel, and PDF files including creation, editing, and format conversion.
                Last updated -
                9
                Python
                • Apple

              View all related MCP servers

              MCP directory API

              We provide all the information about MCP servers via our MCP API.

              curl -X GET 'https://glama.ai/api/mcp/v1/servers/srikanth-paladugula/mcp-dynamics365-server'

              If you have feedback or need assistance with the MCP directory API, please join our Discord server