Skip to main content
Glama
jukkan

xrm-mcp

by jukkan

xrm-mcp

A minimal MCP server that gives AI coding agents (Claude Code, GitHub Copilot, Codex CLI, Cursor, Gemini CLI) clean read + careful write access to Microsoft Dataverse / XRM environments via the Dataverse Web API v9.2.

xrm-mcp-300px

Why this exists: Microsoft ships its own Dataverse MCP server, but it requires Power Platform admin setup, Managed Environments, and Copilot Credits per call. xrm-mcp is a drop-in alternative that works with any Dataverse environment using your existing Azure CLI or Microsoft account. Read more →

Features

  • No Microsoft MCP billing — calls the Dataverse Web API directly, no Copilot Credits consumed

  • No admin toggles — works with any Dataverse environment you can log into

  • No Managed Environment required — standard environments work fine

  • No per-environment setup — org_url is a parameter on every tool call

  • Multi-tenant by design — connect to multiple orgs in the same session

  • Azure CLI + MSAL auth — tries az first, falls back to interactive device flow

  • 8 MCP tools — ping, find/list tables, describe schema, query, create, update, upsert

Installation

Install via pipx (recommended):

pipx install git+https://github.com/jukkan/xrm-mcp.git

Or via pip:

pip install git+https://github.com/jukkan/xrm-mcp.git

Usage

Configuring your AI agent

Add xrm-mcp to your agent's MCP configuration.

Claude Desktop / Claude Code (~/.claude/claude_desktop_config.json or .mcp.json):

{
  "mcpServers": {
    "xrm-mcp": {
      "command": "xrm-mcp"
    }
  }
}

GitHub Copilot (VS Code) — add to .vscode/mcp.json in your workspace:

{
  "servers": {
    "xrm-mcp": {
      "type": "stdio",
      "command": "xrm-mcp"
    }
  }
}

Once configured, pass your environment URL with every request and the agent takes it from there:

"Show me all project records from https://myorg.crm4.dynamics.com created in the last 30 days"

Running the server manually

xrm-mcp

The server uses FastMCP and communicates over stdin/stdout (stdio transport).

Authentication

XRM MCP attempts authentication in the following order:

  1. Azure CLI — if az is available and logged in

  2. MSAL device flow — interactive browser-based login

Tokens are cached at ~/.xrm-mcp/cache.json.

To re-authenticate, delete the cache file or use az login.

Testing authentication manually

python -m xrm_mcp.auth https://yourorg.crm4.dynamics.com

MCP Tools

Read Tools

ping(org_url)

  • Verify connectivity and authentication to a Dataverse environment

  • Returns: status, org_url, user_id, business_unit_id, org_id

  • Call this first when connecting to a new environment

find_table(org_url, name)

  • Search for a table by display name or partial logical name

  • Use when the user says "hour entries" and you need the exact logical name

  • Returns all matching tables sorted by exact display name match first

list_tables(org_url, search="", custom_only=True, prefix="", exclude_ms_prefixes=True)

  • List Dataverse tables, defaulting to custom entities only

  • custom_only=True — only return custom entities (default)

  • prefix="na_" — filter to a specific publisher prefix

  • exclude_ms_prefixes=False — include Microsoft solution tables (msdyn_, adx_, etc.)

  • Returns: logical_name, display_name, entity_set_name, is_custom, description

describe_table(org_url, table)

  • Get columns, types and descriptions for a Dataverse table

  • Call this before querying when you need exact column names for $select or $filter

  • Returns: table_name, columns with metadata

query_records(org_url, table, select="", filter="", top=100, orderby="")

  • Query records from a table using OData filter syntax

  • Returns: {count, records}

  • Top is capped at 5000

Write Tools

create_record(org_url, table, data)

  • Create a single record

  • Returns: {id}

update_record(org_url, table, record_id, data)

  • Update specific fields on an existing record

  • Returns: {success, id}

upsert_record(org_url, table, alternate_key, alternate_value, data)

  • Create or update a record using an alternate key (for sync/import scenarios)

  • Returns: {success, alternate_key, alternate_value}

Example Usage

See CLAUDE.md for detailed agent usage examples and WHY.md for how this compares to Microsoft's own Dataverse MCP server.

Requirements

  • Python 3.10+

  • Azure CLI (optional, for az authentication)

  • Access to a Dataverse / Dynamics 365 environment

Dependencies

  • fastmcp >= 0.1.0

  • msal >= 1.28.0

  • httpx >= 0.27.0

Development

Clone the repository:

git clone https://github.com/jukkan/xrm-mcp.git
cd xrm-mcp

Install in development mode:

pip install -e .

License

MIT

Contributing

Contributions welcome! Please open an issue or pull request.

F
license - not found
-
quality - not tested
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

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/jukkan/xrm-mcp'

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