D365fo Connector MCP Server

An MCP (Model Context Protocol) server that provides access to Microsoft Dynamics 365 Finance & Operations environments. Enables AI assistants like Claude to explore D365 metadata, query data, and perform write operations on non-production environments. Its 22 documented tools cover record, entity, compare, saved. It runs locally over stdio via the published package.

People connecting finance tools to Claude, Cursor, VS Code, or another MCP client. The project is written in TypeScript.

VERIFIED ACTIVE

LAST COMMIT 2026-03-15 · ★ 10 · #177 OF 283 MAINTAINED FINANCE · VERIFIED 2026-08-25

MIT · TypeScript servers · how we verify → /methodology

01 · Install D365fo Connector

before you install - you'll need

Set D365_TENANT_ID, D365_CLIENT_ID, D365_CLIENT_SECRET, D365_ENVIRONMENT_URL, D365_SINGLE_ENV before connecting. D365_CONFIG_FILE is optional or environment-specific per the README.

Claude Code

claude mcp add zhound420-d365fo-claude-connector -- npx -y @zhound/d365fo-mcp-server

Claude Desktop / Cursor / VS Code - add to config

{
  "mcpServers": {
    "zhound420-d365fo-claude-connector": {
      "command": "npx",
      "args": [
        "-y",
        "@zhound/d365fo-mcp-server"
      ]
    }
  }
}

Same JSON for Cursor. For VS Code, rename the top-level key from `mcpServers` to `servers`.

Using another client? Same JSON, different key

Claude Desktop · mcpServers

Cursor · mcpServers

VS Code · servers

Windsurf · mcpServers

Zed · context_servers

Cline · mcpServers

Roo Code · mcpServers

Continue · mcpServers

LibreChat · mcpServers

Gemini CLI · mcpServers

Codex CLI · mcp_servers

Full setup guides: every client.

02 · Evidence

Security posture

What to check before giving this server access to your agent - from the registry, GitHub, and our own probes. We don't score safety; we show what's verifiable.

runs as local process (stdio) - runs on your machine with your user's permissions

license MIT - declared in the repository

npm package @zhound/d365fo-mcp-server - the @zhound scope differs from the repo owner (zhound420); confirm it's the project's official package

registry namespace io.github.zhound420 is GitHub-verified and matches the repo owner

03 · What D365fo Connector can do

Prose above is summarized from the project's README and registry record - no invented capabilities.

What you can build

With this server connected, an agent can list all configured D365 environments with connection status, set the working environment for the current session, execute raw OData paths (queries, single records, counts), and export query results to CSV, JSON, or TSV format.

Capability map

Tools grouped from the project's README - what D365fo Connector lets an agent do.

Record

3 tools - e.g. Create new records (non-production environments only); Update existing records (non-production environments only); Delete records (non-production environments only)

create_record · update_record · delete_record

read & search

2 tools - e.g. List all configured D365 environments with connection status; Follow entity relationships to retrieve related records

list_environments · get_related

Entity

2 tools - e.g. Quick schema lookup for an entity; Robust entity search with automatic fallback strategies

describe_entity · search_entity

Compare

2 tools - e.g. YoY, QoQ, MoM period comparisons with change calculations; Compare entity schemas between two environments to detect schema drift

compare_periods · compare_schemas

Saved

2 tools - e.g. Execute saved query templates with parameter substitution; Delete saved query templates

execute_saved_query · delete_saved_query

Batch

2 tools - e.g. Execute multiple queries in parallel; Execute multiple create/update/delete operations in a single batch request (non-production only)

batch_query · batch_crud

update

1 tool - e.g. Set the working environment for the current session

set_environment

run & execute

1 tool - e.g. Execute raw OData paths (queries, single records, counts)

execute_odata

04 · Who maintains D365fo Connector

d365fo-connector is maintained by zhound420. It's the only MCP server we track from this author; the repo dates to Jan 2026.

05 · Facts

category
finance - ranked #177 of 283 actively-maintained finance servers as of 2026-08-25.
registry
io.github.zhound420/d365fo-connector (active, first published 2026-03-15)
packages
npm:@zhound/d365fo-mcp-server

06 · D365fo Connector FAQ

Is D365fo Connector still maintained?

Yes - as of 2026-08-25, its last commit was 2026-03-15. We re-verify nightly.

What can D365fo Connector do?

With this server connected, an agent can list all configured D365 environments with connection status, set the working environment for the current session, execute raw OData paths (queries, single records, counts), and export query results to CSV, JSON, or TSV format.

How do I install D365fo Connector?

Run `npx -y @zhound/d365fo-mcp-server`. The README documents 6 environment variables (D365_TENANT_ID, D365_CLIENT_ID, D365_CLIENT_SECRET…) to set first. Set D365_TENANT_ID, D365_CLIENT_ID, D365_CLIENT_SECRET, D365_ENVIRONMENT_URL, D365_SINGLE_ENV before connecting. D365_CONFIG_FILE is optional or environment-specific per the README. You can also paste the ready-made client config above.

Does D365fo Connector run locally?

Yes - it's a stdio server: it runs on your machine (via npx) with your user's permissions. Your data stays local unless the server itself calls external APIs.

07 · Alternatives to D365fo Connector