Back to MCP directory
publicPublicdnsLocal runtime

mcp-collections

一个包含YouTube、Mermaid图表、Reddit和网页抓取功能的MCP服务集合项目

article

README

🚀 MCP收藏夹

MCP收藏夹支持多种实用服务,如视频平台、图表绘制、社区内容获取以及网页抓取等。通过简单配置,即可轻松集成这些服务,为你的项目增添丰富功能。

🚀 快速开始

MCP收藏夹支持一系列实用服务,能满足多样化的需求。以下是支持的服务列表:

  • YouTube
  • Mermaid图表
  • Reddit
  • 网页抓取(无头浏览器 - 请安装 npx playwright install --with-deps

📦 安装指南

运行以下命令以安装依赖项:

npm install

💻 使用示例

基础用法

以下是用于Claude的配置示例内容:

{
  "mcpServers": {
    "youtube": {
      "command": "npx",
      "args": ["tsx", "/Volumes/TRANSCEND/dev/mcp-collections/youtube.ts"],
      "env": {
        "YOUTUBE_API_KEY": "your-youtube-api-key"
      }
    },
    "mermaidjsdiagram": {
      "command": "npx",
      "args": ["tsx", "/Volumes/TRANSCEND/dev/mcp-collections/mermaid.ts"]
    },
    "reddit": {
      "command": "npx",
      "args": ["tsx", "/Volumes/TRANSCEND/dev/mcp-collections/reddit.ts"]
    },
    "fetch": {
      "command": "npx",
      "args": ["tsx", "/Volumes/TRANSCEND/dev/mcp-collections/fetch.ts"]
    }
  }
}
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client