home / mcp / brainrot mcp server
make waiting for your vibe-coding task enjoable
Configuration
View docs{
"mcpServers": {
"bunasq-brainrot-mcp": {
"command": "node",
"args": [
"path/to/brainrot-mcp/dist/index.js"
]
}
}
}This MCP server lets you pair your coding sessions with a lightweight local background process that starts when you begin coding and stops when you’re done. It provides a simple, automated workflow that keeps development momentum going by running a specified local command alongside your coding activity.
To use this server, interact with your MCP client to connect to the brainrot MCP server. The server runs a local process automatically when you start coding and ends when you finish your session. You don’t need to run extra setup—just start your coding task and the MCP client will manage the lifecycle of the local process for you.
{
"mcpServers": {
"brainrot": {
"command": "node",
"args": ["path/to/brainrot-mcp/dist/index.js"]
}
}
}Configuration shown here enables the brainrot MCP server to run a local Node.js script. You can place the config in your MCP setup to enable automatic activation during coding sessions.
- The brainrot MCP server is configured as a stdio type, meaning it runs locally using the node command and the specified script path. - No external URLs are required for this server; it operates entirely on your local machine using the provided command and arguments.