MCP Catalogs
首页

mcp-bear vs filesystem

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

mcp-bear
by jkawamoto
filesystem
by modelcontextprotocol
Stars★ 70★ 85,748
30天用量
综合分4677
官方
分类
效率工具note-taking其它
本地文件系统开发者工具效率工具
实现语言PythonTypeScript
最近提交3 个月前本月

mcp-bear · 概述

Bear 笔记应用的 MCP 服务器,支持多个客户端且文档完善。

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

mcp-bear · 使用场景

  • 在 Bear 和 AI 助手之间自动化笔记创建和组织
  • 将 Bear 笔记集成到 AI 工作流程中以增强内容处理
  • 通过 MCP 客户端以编程方式管理 Bear 标签和笔记

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

mcp-bear · 安装

安装

  1. 在系统上安装 uv
  1. 设置 BEAR_API_TOKEN 环境变量为您的 API 令牌
  1. 在您的 MCP 客户端中配置:

Claude Desktop

添加到 claude_desktop_config.json

{
  "mcpServers": {
    "bear": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/jkawamoto/mcp-bear",
        "mcp-bear",
        "--token",
        "<YOUR_TOKEN>"
      ]
    }
  }
}

Goose

添加到 ~/.config/goose/config.yaml

extensions:
  bear:
    name: Bear
    cmd: uvx
    args: [--from, git+https://github.com/jkawamoto/mcp-bear, mcp-bear]
    envs: { "BEAR_API_TOKEN": "<YOUR_TOKEN>" }
    enabled: true
    type: stdio

LM Studio

从仓库页面点击安装按钮或手动配置。

filesystem · 安装

安装

使用 NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

使用 Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code 扩展

点击 README 中的安装按钮直接在 VS Code 中安装。

对比内容由 README + GitHub 公开数据自动生成,定期更新。