Brimble’s add-on marketplace surfaces ready-to-deploy MCP servers, Model Context Protocol services for AI clients to call. Browse, inspect, and one-click deploy any of them into your workspace.Documentation Index
Fetch the complete documentation index at: https://paper.brimble.io/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- A Brimble account.
- A workspace where the MCP server will live. The deployed server appears as a project under that workspace.
Browse the marketplace
- In the sidebar, click Discover.
- The marketplace lists every MCP server Brimble has indexed.
- Filter or search:
- Category tabs,
Allplus categories likedevelopment,productivity, etc. - Search bar, match by name or description.
- Category tabs,
- The server’s name.
- A short description.
- The number of tools the server provides.
- A Verified badge for officially-vetted servers.

Inspect a server
Click a card to open the server’s detail page. You’ll see:- Long description, what the server does and when to use it.
- Tools list, every tool the server exposes, with parameter schemas (name, type, required-or-optional). Useful for understanding what an AI client will be able to do once you deploy.
- Related servers, three similar servers in the same category.
Deploy
- On the server’s detail page, click Deploy server.
- Decide whether to Enable authentication:
- On, clients must include an
x-brimble-keyheader on every request. Brimble issues you a key after deployment. - Off, the MCP server is reachable to anyone with the URL. Safe for public read-only servers; risky for anything that does work or holds state.
- On, clients must include an
- Click Deploy.
- The MCP server URL:
https://<project-name>.brimble.app/mcp - A Copy MCP URL button.
- A link to the integration documentation.
Connect an AI client
Once the server is live, point your client at it. In Claude Desktop, editclaude_desktop_config.json:
x-brimble-key header is only required if you enabled authentication during deploy. If you didn’t, omit the headers block.
In Cursor and other clients, add the URL under the client’s MCP configuration. Pass the x-brimble-key header if you enabled auth.
Restart the client to pick up the new server. The tools the server provides should appear in your client’s tool list.
Manage authentication
To toggle authentication after deploy:- Open the project for the deployed MCP server.
- Go to Settings → Configuration.
- Toggle MCP authentication on or off.
- Save and redeploy.
- Click your avatar in the sidebar to open the profile drawer.
- Scroll to API key.
- Click Reroll key and confirm.
- Update every client that connects with the new key.
Custom MCP servers
To deploy your own MCP server (not from the marketplace), see Deploy an MCP server. The flow is the same as a web service, the only Brimble-specific extra is the authentication header.Verification
x-brimble-key header and the request still works.
Troubleshooting
Server deploys but no tools show in my client. Confirm the URL ends in/mcp (or whatever path the server documents). Some clients trim trailing paths; check the URL the client actually requested.
401 Unauthorized on every request. Authentication is enabled and the x-brimble-key header is missing or wrong. Open your profile drawer (avatar → API key), reveal the key, and update your client with that value.
Server shows as deployed but /mcp returns 502. The server’s container isn’t responding. Open the project’s logs to see the startup output. Some MCP servers from the marketplace need additional environment variables, check the server’s detail page for required config.
Duplicate “deploy” button creates two projects. The marketplace deploys a fresh project each time you click. To re-deploy an existing MCP server, go to that project and click Redeploy instead.
Next steps
- Deploy an MCP server, deploy your own custom MCP code.
- Service types, what MCP servers run as on Brimble.