xrm-mcp

xrm-mcp

A minimal MCP server that gives AI coding agents clean read and write access to Microsoft Dataverse environments via the Dataverse Web API v9.2. It works as a drop-in alternative to Microsoft's own MCP server, without requiring Copilot Credits or managed environments.

Category
Visit Server

README

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.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured