Second Brain OS MCP Server

local-only server

The server can only run on the client’s local machine because it depends on local resources.

Integrations

  • Provides 'Crawl Text' functionality for YouTube Videos

第二脑操作系统 MCP 服务器

创建在 Claude 内部运行的强大的 AI 代理。

  • 没有 Zapier
  • 没有 n8n
  • 没有 Make.com

你不需要代码。你不需要低代码。你甚至不需要没有代码。

是的,你基本上什么都不用做。安装完 Second Brain OS MCP 服务器后,你可以访问我的商店https://products.umairkamil.com ,在那里你可以找到一系列“操作”。

您购买的操作一旦生效,您的 Claude 即可立即使用。您只需关闭桌面应用程序,然后重新打开即可。

某些操作,例如“搜索网页”和“抓取文本”(网站和 YouTube 视频),需要消耗点数。这些操作无需任何费用*即可购买,但您需要充值才能使用。

所有新的 Second Brain OS 用户都将获得 100 个积分作为奖励。

您可以使用“Second Brain OS Desktop”安装程序跳过所有这些步骤,该安装程序可帮助您轻松安装 Node.js、登录并克隆 Second Brain OS MCP 服务器。您无需输入任何终端命令,因为它的体验非常便捷。

对于那些想以困难的方式做到这一点的人:

为 Second Brain OS 实现模型上下文协议服务器,从而实现与 Claude Desktop 的集成。

先决条件

  • Node.js >= 16.0.0
  • npm 或 yarn
  • Claude桌面应用程序

安装

  1. 克隆存储库:
git clone https://github.com/SecondBrain/secondbrainos-mcp-server.git cd secondbrainos-mcp-server
  1. 安装依赖项:
npm install
  1. 构建服务器:
npm run build

配置

  1. 在根目录中创建一个.env文件:
USER_ID=your_user_id USER_SECRET=your_user_secret
  1. 配置Claude桌面:
mkdir -p ~/Library/Application\ Support/Claude/

创建或更新~/Library/Application Support/Claude/claude_desktop_config.json

{ "mcpServers": { "secondbrainos": { "command": "/usr/local/bin/node", "args": ["/absolute/path/to/secondbrainos-mcp-server/build/index.js"], "env": { "USER_ID": "your-user-id", "USER_SECRET": "your-user-secret", "NODE_PATH": "/usr/local/lib/node_modules" } } } }

用法

  1. 启动服务器:
npm start
  1. 启动 Claude Desktop 并在 🔌 插件菜单中检查服务器

发展

使用热重载以开发模式运行:

npm run dev

故障排除

如果您遇到问题:

  1. 检查 Claude Desktop 日志:
tail -f ~/Library/Logs/Claude/mcp*.log
  1. 验证构建文件是否存在:
ls -la build/index.js
  1. 常见问题:
  • 确保全局包安装
  • 检查配置中的绝对路径
  • 验证 NODE_PATH 设置是否正确
-
security - not tested
A
license - permissive license
-
quality - not tested

利用模型上下文协议框架,促进与 Claude Desktop 的集成,以运行 AI 代理并执行无需代码的购买操作。

  1. For those who want to do it the hardway:
    1. Prerequisites
    2. Installation
    3. Configuration
    4. Usage
    5. Development
    6. Troubleshooting
ID: dn77ue4b0c