batchbrew
v1.0.7
Published
Batchbrew MCP server — connect your AI coding tools to your Batchbrew spaces
Downloads
861
Maintainers
Readme
Batchbrew
Connect your AI coding tools to your Batchbrew spaces via the Model Context Protocol.
Quick Start
npx batchbrew installThe interactive installer will walk you through connecting your IDE.
Supported Tools
| Tool | Transport | Install Method |
|------|-----------|----------------|
| Cursor | HTTP (OAuth) | npx batchbrew install -i cursor |
| VS Code | HTTP (OAuth) | npx batchbrew install -i vscode |
| Claude Code | HTTP (OAuth) | npx batchbrew install -i claude-code |
| Codex (OpenAI) | Stdio | npx batchbrew install -i codex |
| Windsurf | Stdio | npx batchbrew install -i windsurf |
| Antigravity | Stdio | npx batchbrew install -i antigravity |
Link a Space
Pass a space hash or URL to automatically create a .batchbrew config in your project:
npx batchbrew install -s a1b2c3d4e5f6g7h8Manual Configuration
Cursor / VS Code (HTTP with OAuth)
{
"mcpServers": {
"batchbrew": {
"url": "https://api.batchbrew.xyz/mcp"
}
}
}Claude Code
claude mcp add --transport http batchbrew https://api.batchbrew.xyz/mcpStdio Transport (API Key required)
For tools that don't support HTTP/OAuth, use the stdio proxy with an API key:
{
"mcpServers": {
"batchbrew": {
"command": "npx",
"args": ["-y", "batchbrew", "start"],
"env": {
"BATCHBREW_API_KEY": "<YOUR_API_KEY>"
}
}
}
}Get an API key at batchbrew.xyz/integrations.
Commands
| Command | Description |
|---------|-------------|
| batchbrew install | Interactive IDE setup |
| batchbrew start | Start the stdio MCP proxy (used by IDEs automatically) |
License
Copyright (c) 2026 Supaflow UG (haftungsbeschränkt). All rights reserved. See LICENSE.
