Documentation
Breadcrumbs

Get Started With MyBrain


MyBrain

MyBrain is an AI-agent for advanced users. This tool is an mcp server that can be used in AI-agents like Cursor, Claude and Github Copilot. It searches both our codebase and documentation on this site to give fast and reliable answers, and it can help you create customizations in your Salesforce org.

Prerequisites

Install this package in your org.

Claude

To add MyBrain to Claude, download Claude Desktop. Go to File > Settings > Connectors and add a Custom Connector. Enter a name for the connector and enter this url.

https://mcp.mybrain.mysolution.nl/mcp

Claude Code

When working from your terminal, use this command to add MyBrain to your mcp server list:

claude mcp add --transport http myBrain https://mcp.mybrain.mysolution.nl/mcp -s user

Cursor

Go to Cursor settings > MCP’s and tools, and add a new MCP Server. Add the following to your server list json file:

"mcpServers": { 
    ...
    "myBrain": {
      "url": "https://mcp.mybrain.mysolution.nl/mcp"
    }
}


GitHub Copilot

Create an mcp.json file in your .vscode folder. Add the following configuration:

"mcpServers": {
    ...
    "myBrain": {
      "url": "https://mcp.mybrain.mysolution.nl/mcp"
    }
}