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 | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsProductivityDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | this 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-everythingmcp-stata · Install
Installation
Using the installer script
macOS/Linux:
curl -LsSf https://mcp-stata-install.tdmonk.com/install.sh | bashWindows (PowerShell):
irm https://mcp-stata-install.tdmonk.com/install.ps1 | iexClaude 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).