MCP Catalogs
首页

everything vs mcp-stata

并排对比,帮你在这两个 MCP server 之间做选择。

everything
by modelcontextprotocol
mcp-stata
by tmonk
Stars★ 85,748★ 62
30天用量
综合分7746
官方
分类
开发者工具AI / LLM 工具其它
AI / LLM 工具效率工具开发者工具
实现语言TypeScriptPython
最近提交本月本月

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

mcp-stata · 概述

一个Stata的MCP服务器,让AI代理能执行Stata代码、检查数据和检索结果。

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

mcp-stata · 使用场景

  • 需要AI辅助数据分析的实证研究工作流
  • 论文自动化准备和出版质量保证
  • 经济学研究中的代码现代化和复制研究

everything · 安装

NPX(推荐)

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

Windows 用户请使用 cmd /c

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

Docker

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

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

mcp-stata · 安装

安装

使用安装脚本

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 配置

添加到您的 Claude Desktop 配置中:

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

先决条件: Stata 17+, Python 3.11+ 和 uv (推荐)。

对比内容由 README + GitHub 公开数据自动生成,定期更新。