MCP Catalogs
首页

fetch vs mastodon-mcp

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

fetch
by modelcontextprotocol
mastodon-mcp
by The-Focus-AI
Stars★ 85,748★ 9
30天用量
综合分7638
官方
分类
网页抓取AI / LLM 工具效率工具
沟通协作多媒体效率工具
实现语言TypeScriptTypeScript
最近提交本月7 个月前

fetch · 概述

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

mastodon-mcp · 概述

MCP服务器,支持Mastodon社交媒体互动,可发布嘟文和媒体附件。

fetch · 使用场景

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

mastodon-mcp · 使用场景

  • 从AI代理自动发布内容到Mastodon
  • 提前安排社交媒体内容以保持持续发布
  • 管理带有媒体附件和替代文本的Mastodon存在
  • 与AI工作流程集成以分享更新或发现

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"]
    }
  }
}

mastodon-mcp · 安装

安装

# 克隆仓库
git clone [repository-url]
cd mastodon-mcp

# 安装依赖
pnpm install

# 构建项目
pnpm build

# 配置
export MASTODON_ACCESS_TOKEN="your_mastodon_api_token"
export MASTODON_INSTANCE_URL="https://your.instance.social"  # 可选

# 启动服务器
pnpm start

Claude Desktop 配置

添加到 Claude Desktop config.json:

{
  "mcpServers": {
    "mastodon": {
      "command": "node",
      "args": ["path/to/mastodon-mcp/dist/mcp-server.js"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。