MCP Catalogs
Home

Dataverse-skills vs everything

Side-by-side comparison to help you pick between these two MCP servers.

Dataverse-skills
by microsoft
everything
by modelcontextprotocol
Stars★ 101★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsDatabaseAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScript
Last committhis monththis month

Dataverse-skills · Summary

Microsoft Dataverse skills for AI coding agents that wrap Dataverse MCP server, CLI, SDK and PAC CLI.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

Dataverse-skills · Use cases

  • Natural language querying of Dataverse data for CRM analysis
  • Automating Dataverse solution deployment across environments
  • Creating and managing data models and metadata through AI agents

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

Dataverse-skills · Install

Installation

For GitHub Copilot:

/plugin install dataverse@awesome-copilot

For Claude Code:

/plugin install dataverse@claude-plugins-official

After installation, connect to Dataverse by asking your agent: "Connect to Dataverse". This will walk through tool checks, authentication, and MCP registration.

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.