What is the brainCloud MCP MCP server?
Manage brainCloud apps, cloud code, hooks and servers; API lookups to help generate client code.
How to install brainCloud MCP
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"braincloud-mcp": {
"url": "https://mcp.braincloudservers.com/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"braincloud-mcp": {
"serverUrl": "https://mcp.braincloudservers.com/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"braincloud-mcp": {
"type": "http",
"url": "https://mcp.braincloudservers.com/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"braincloud-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.braincloudservers.com/mcp"
]
}
}
}Claude Code
claude mcp add --transport http braincloud-mcp https://mcp.braincloudservers.com/mcpRelated MCP servers
brainCloud MCP Helper
Maintained
Helper for brainCloud MCP that gives it local file access, enabling easy git sync of cloud code.
1
View repository →TypeScript
Apache-2.0