- Home
- MCP servers
- Brainrot
Brainrot
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
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.
How to use
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.
How to install
{
"mcpServers": {
"brainrot": {
"command": "node",
"args": ["path/to/brainrot-mcp/dist/index.js"]
}
}
}
Additional sections
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.
Notes
- 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.