M

MCP Substack服务器

@michalnaka/mcp-substack
0 Stars 164 次浏览 michalnaka 更新于 2026-08-23

一种模型上下文协议服务器,可以通过Claude桌面应用程序直接下载和解析Substack帖子,使用户能够访问和总结Substack内容。

该服务暂未提供标准配置,请参考 README 手动接入

可用工具 (1 个)

该服务在 MCP 协议中暴露的工具,AI 可按需调用

download_substack 1 个参数 需填 1 项

Download and parse content from a Substack post

必填参数:url

服务介绍

MCP Substack 服务器

一个用于下载和解析 Substack 文章的 Model Context Protocol (MCP) 服务器。与 Claude.ai 桌面应用程序兼容。

安装

  1. 安装依赖项:
npm install
  1. 配置 Claude 桌面应用程序:

将以下内容添加到 ~/Library/Application Support/Claude/claude_desktop_config.json 文件中:

{
  "mcpServers": {
    "mcp-substack": {
      "command": "/opt/homebrew/bin/node",
      "args": ["/path/to/mcp-substack/lib/index.mjs"],
      "methods": {
        "download_substack": {
          "description": "Download and parse content from a Substack post"
        }
      }
    }
  }
}
  1. 启动服务器:
npm start

使用方法

在 Claude 桌面应用程序中,使用:

Could you download and summarize this Substack post: [URL]

功能

  • 下载和解析 Substack 文章
  • 提取标题、作者、副标题和内容
  • 支持公开的 Substack 文章
  • 与 Claude.ai 桌面应用程序集成

要求

  • Node.js v18+
  • Claude 桌面应用程序

许可证

MIT

相关 MCP 服务