MCP Catalogs
Home

everything vs adaptive-cards-mcp

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

everything
by modelcontextprotocol
adaptive-cards-mcp
by VikrantSingh01
Stars★ 85,748★ 26
30d uses
Score7746
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsProductivityDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

adaptive-cards-mcp · Summary

AI-powered Adaptive Card MCP server with 9 tools for generating, validating, and optimizing cards for Teams, Outlook, Copilot, and ChatGPT.

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

adaptive-cards-mcp · Use cases

  • Generate expense approval cards for Teams with proper validation
  • Convert API response data into Adaptive Cards with appropriate layouts
  • Optimize existing cards for accessibility and cross-platform compatibility
  • Create CI/CD notification cards for deployment alerts

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

adaptive-cards-mcp · Install

Installation

No install needed — npx downloads and runs it automatically.

Claude Desktop

Add to Claude Desktop configuration:

{
  "mcpServers": {
    "adaptive-cards-mcp": {
      "command": "npx",
      "args": ["adaptive-cards-mcp"]
    }
  }
}

GitHub Copilot (VS Code)

Add to .vscode/mcp.json:

{
  "servers": {
    "adaptive-cards-mcp": {
      "command": "npx",
      "args": ["adaptive-cards-mcp"]
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "adaptive-cards-mcp": {
      "command": "npx",
      "args": ["adaptive-cards-mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.