MCP Catalogs
首页

mcp-ipfs vs everything

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

mcp-ipfs
by alexbakers
everything
by modelcontextprotocol
Stars★ 16★ 85,748
30天用量
综合分3577
官方
分类
云存储开发者工具本地文件系统
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交13 个月前本月

mcp-ipfs · 概述

一个MCP服务器,包装w3 CLI,使语言模型能够通过storacha.network与IPFS交互。

everything · 概述

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

mcp-ipfs · 使用场景

  • 让AI助手管理IPFS空间和上传文件
  • 使语言模型能够生成和分享w3s链接
  • 为AI提供管理Web3存储委托和证明的能力

everything · 使用场景

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

mcp-ipfs · 安装

安装

  1. 安装先决条件:

- Node.js 22.0.0或更高版本 - w3 CLI:npm install -g @web3-storage/w3cli - 配置w3:w3 login <your-email@example.com>

  1. 设置环境变量:

export W3_LOGIN_EMAIL="your-email@example.com"

  1. 配置您的MCP客户端:
{
  "mcpServers": {
    "ipfs": {
      "command": "npx",
      "args": ["-y", "mcp-ipfs"],
      "env": {
        "W3_LOGIN_EMAIL": "your-email@example.com"
      }
    }
  }
}

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
对比内容由 README + GitHub 公开数据自动生成,定期更新。