Second Brain OS MCP Server

Second Brain OS MCP Server

Create powerful AI Agents that run right inside Claude.

  • No Zapier
  • No n8n
  • no Make.com

You don't need code. You don't need low code. You don't even need no code.

Yes, you basically don'y need to do anything. Once you install the Second Brain OS MCP Server, you can go to my store at https://products.umairkamil.com where you can find a range of "Actions".

The minute you purchase an action, it's instantly available to your Claude. All you need to do is close the desktop app and open it again.

Some actions, such as "Search the Web" and "Crawl Text" (Websites and YouTube Videos) cost credits. These actions can be purchased for $0* but you will need to add credits to use them.

All new Second Brain OS users get a 100 credits as a bonus.

You can skipp all these steps by using the "Second Brain OS Desktop" installer which helps install Node.js, Sign In and Clone Second Brain OS MCP Server with 0 effort. You won't have to enter a single terminal command, because it's a neat experience.

For those who want to do it the hardway:

Model Context Protocol server implementation for Second Brain OS, enabling integration with Claude Desktop.

Prerequisites

  • Node.js >= 16.0.0
  • npm or yarn
  • Claude Desktop application

Installation

  1. Clone the repository:
git clone https://github.com/SecondBrain/secondbrainos-mcp-server.git cd secondbrainos-mcp-server
  1. Install dependencies:
npm install
  1. Build the server:
npm run build

Configuration

  1. Create a .env file in the root directory:
USER_ID=your_user_id USER_SECRET=your_user_secret
  1. Configure Claude Desktop:
mkdir -p ~/Library/Application\ Support/Claude/

Create or update ~/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" } } } }

Usage

  1. Start the server:
npm start
  1. Launch Claude Desktop and check for the server in the 🔌 plugins menu

Development

Run in development mode with hot reloading:

npm run dev

Troubleshooting

If you encounter issues:

  1. Check Claude Desktop logs:
tail -f ~/Library/Logs/Claude/mcp*.log
  1. Verify the build file exists:
ls -la build/index.js
  1. Common issues:
  • Ensure global package installation
  • Check absolute paths in configuration
  • Verify NODE_PATH is set correctly
-
security - not tested
A
license - permissive license
-
quality - not tested

Facilitates integration with Claude Desktop to run AI agents and execute purchased actions without code, leveraging the Model Context Protocol framework.

  1. For those who want to do it the hardway:
    1. Prerequisites
      1. Installation
        1. Configuration
          1. Usage
            1. Development
              1. Troubleshooting