Microsoft Dataverse MCP Server
Microsoft ships a first-party MCP server for Dataverse, the data platform underneath Power Platform. It is reachable two ways: a remote HTTP endpoint on the customer's own Dataverse environment host, and a local stdio proxy distributed on npm as @microsoft/dataverse. Both are the same server; the npm package authenticates and forwards to the remote endpoint.
One-click install for Cursor, VS Code, Claude, and 20+ other MCP clients, powered by API Commons MCP Install — visit install.apicommons.org for more information.
Descriptor
Candidate descriptor · transport
Tools
create_record— Insert a new record into a specified Dataverse table; returns the GUID of the new row.read_query— Execute SELECT statements to query Dataverse data with filters and conditions.update_record— Modify an existing record in a Dataverse table by GUID and the fields to update.delete_record— Delete a specific record from a Dataverse table using its unique identifier.list_tables— Return all available tables within the current Dataverse environment.describe_table— Retrieve the complete T-SQL schema for a given Dataverse table - fields, types, relationships.create_table— Create a new Dataverse table by defining column names, data types and relationships.update_table— Modify an existing table's schema or metadata - add columns, rename fields, update constraints.delete_table— Permanently remove a table from the Dataverse environment, including its schema and data.search— Keyword search across Dataverse to locate records, entities or fields.fetch— Retrieve complete record details from Dataverse using the table name and record ID.
About MCP
The Model Context Protocol (MCP) is an open protocol Anthropic introduced for connecting LLM-based agents to external tools and data sources. Providers publish MCP servers that expose their API surface as structured, discoverable tools — an MCP-compatible client (Claude Desktop, Cursor, Cline, Continue, etc.) can connect to the server and call its tools without any per-provider integration code.
Browse every MCP server on the APIs.io network or compare with the broader Agent Skill surfaces of the same providers.
Work with this as data
Every MCP server here is available over the APIs.io API and to AI agents over MCP.