MCP Catalogs
首页

fetch vs trading-mcp

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

fetch
by modelcontextprotocol
trading-mcp
by netanelavr
Stars★ 85,748★ 71
30天用量
综合分7643
官方
分类
网页抓取AI / LLM 工具效率工具
金融数据AI / LLM 工具网页抓取
实现语言TypeScriptTypeScript
最近提交本月10 个月前

fetch · 概述

一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。

trading-mcp · 概述

Trading MCP 服务器提供股票筛选、基本面分析、内部交易、社交情绪和新闻分析功能。

fetch · 使用场景

  • 大模型阅读新闻文章和博客
  • 网页内容分析
  • 从公共网站检索信息
  • 分块读取大型网页文档

trading-mcp · 使用场景

  • 金融分析师同时使用多个数据点评估股票
  • 个人投资者研究社交情绪和内部交易模式
  • 算法交易员基于技术模式和指标筛选股票

fetch · 安装

安装

**使用uv(推荐)** 无需特定安装。使用uvx直接运行服务器:

uvx mcp-server-fetch

**使用PIP** 通过pip安装:

pip install mcp-server-fetch

然后运行:

python -m mcp_server_fetch

Claude桌面配置

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}

trading-mcp · 安装

安装步骤

  1. **克隆并安装依赖:**
git clone <repository-url>
cd trading-mcp
npm install
  1. **构建项目:**
npm run build
  1. **在 Claude Desktop 中配置:**

添加到 claude_desktop_config.json

{
  "mcpServers": {
    "trading-mcp": {
      "command": "node",
      "args": ["/path/to/trading-mcp/dist/server.js"],
      "env": {
        "OPENAI_API_KEY": "sk-your-openai-api-key-here",
        "REDDIT_CLIENT_ID": "your-reddit-client-id",
        "REDDIT_CLIENT_SECRET": "your-reddit-client-secret",
        "REDDIT_USERNAME": "your-reddit-username",
        "REDDIT_PASSWORD": "your-reddit-password"
      }
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。