- Home
- MCP servers
- DevBrain
DevBrain
- other
2
GitHub Stars
other
Language
6 months ago
First Indexed
2 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": {
"mimecam-mcp-devbrain-stdio": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"svenai/mcp-devbrain-stdio:latest"
]
}
}
}DevBrain MCP Server is a specialized MCP server that pulls developer-focused newsletters to surface relevant code snippets, articles, and blog posts to inform your implementations. It helps you quickly reference high-quality, developer-curated content when building features or researching topics.
How to use
You run DevBrain MCP Server as an MCP endpoint that your AI agents or clients can query. Use the stdio mode for local development or the docker option for containerized deployments. In practice, start the server and point your MCP client to it to access summarized articles with URLs you can open for deeper reading.
How to install
Prerequisites you need before installing DevBrain MCP Server:
- Python 3.10 or newer
- uv and uvx tools for runtime
- A system with internet access for installation and updates
Install the uv toolchain if it is not already present by running the install script:
curl -LsSf https://astral.sh/uv/install.sh | sh
To run DevBrain MCP Server in stdio mode using uvx, execute the following command (example present in standard usage):
uvx --python ">=3.10" --from devbrain devbrain-stdio-server
If you prefer a reinstall to ensure latest changes are loaded, you can include --force-reinstall in the command:
uvx --python ">=3.10" --force-reinstall --from devbrain devbrain-stdio-server
For containerized deployments, you can verify a Docker-based run with a prebuilt image. Start a container in stdio mode using the following example:
docker run -i --rm svenai/mcp-devbrain-stdio:latest
Additional setup and notes
DevBrain supports integration with AI agents such as Claude or similar tools. To configure Claude or other agents, you add the DevBrain MCP endpoints to their MCP server configurations and use the provided startup command to run the server locally or in a container.
If you need to switch between local stdio and remote HTTP-based MCPs, configure each endpoint independently in your client’s MCP server list. The http approach is useful when you have a centralized MCP gateway, while stdio is ideal for local development and testing.
Security and tips
Keep your runtime environment up to date, especially Python and the uv/uvx tooling, to ensure compatibility and security. When using Docker, prefer official images or trusted builds and regularly pull the latest image tags.
If you encounter environment or path issues with uvx or uv, ensure the binaries are accessible in your shell path. Restart your client after making changes to the MCP server configuration.
Examples and notes
To add DevBrain to a client's MCP configuration, specify the stdio command and arguments exactly as shown in the installation steps. You can adjust the Python version constraint as needed, but ensure it is compatible with your runtime.