MCP Catalogs
Home

everything vs mcp-stata

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

everything
by modelcontextprotocol
mcp-stata
by tmonk
Stars★ 85,748★ 62
30d uses
Score7746
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsProductivityDeveloper Tools
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

mcp-stata · Summary

A Model Context Protocol server for Stata that enables AI agents to execute Stata code, inspect data, and retrieve results.

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

mcp-stata · Use cases

  • Empirical research workflows requiring AI assistance with data analysis
  • Automated paper preparation and publication quality assurance
  • Code modernization and replication studies in economics research

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

mcp-stata · Install

Installation

Using the installer script

macOS/Linux:

curl -LsSf https://mcp-stata-install.tdmonk.com/install.sh | bash

Windows (PowerShell):

irm https://mcp-stata-install.tdmonk.com/install.ps1 | iex
Claude Desktop Configuration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "mcp-stata": {
      "command": "uvx",
      "args": [
        "--refresh",
        "--refresh-package",
        "mcp-stata",
        "--from",
        "mcp-stata@latest",
        "mcp-stata"
      ]
    }
  }
}

Prerequisites: Stata 17+, Python 3.11+, and uv (recommended).

Comparison generated from public README + GitHub signals. Last updated automatically.