Skip to content

Connecting External Clients

NimbleBrain can act as a tool server for external apps that support the MCP protocol — like Claude Desktop, VS Code with Copilot, or Claude Code. This means you can access all your NimbleBrain apps and tools from inside those clients without switching to the web UI.

Your admin will provide two things:

  • Instance URL — The address of your NimbleBrain instance (e.g., https://your-team.nimblebrain.ai)
  • API key — Your personal authentication token

You can find your workspace ID in Settings > Profile under the MCP Connection card.

Add NimbleBrain as an MCP server in your Claude Desktop settings:

{
"mcpServers": {
"nimblebrain": {
"type": "url",
"url": "https://your-team.nimblebrain.ai/mcp",
"headers": {
"Authorization": "Bearer your-api-key"
}
}
}
}

Once connected, Claude Desktop can discover and use all the tools from your NimbleBrain workspace — every installed app’s capabilities are available through a single connection.

Add to your .claude/mcp.json:

{
"mcpServers": {
"nimblebrain": {
"type": "url",
"url": "https://your-team.nimblebrain.ai/mcp",
"headers": {
"Authorization": "Bearer your-api-key"
}
}
}
}

In VS Code with GitHub Copilot, add a server through the MCP settings panel. Use the same URL and API key as above.

When you connect an external client, it gets access to all tools from apps installed in your workspace — the same tools the agent uses when you chat in the web UI. If your admin installs or removes an app, the change is reflected automatically.