Finds relevant code snippets, developer articles, and blog posts based on your queries.
Chat with your favorite newsletters (coding, tech, founder).
|
![]() | |
---|---|
It is a newsletter-based MCP that searches for relevant code snippets, indie developer articles and blog posts so you don't have to hunt through generic web results again. Just ask LLM: "research on devbrain"
It's kind of like a web search, but specifically tuned for high-quality, developer-curated content. You can easily plug in your favorite newsletter to expand its knowledge base even further.
For example, when you are implementing feature "A", DevBrain can pull related articles that would serve as a solid reference and a foundation for your implementation.
Claude app | Goose app (tap on an image to open utube) |
DevBrain returns articles as short description + URL, you can then:
Claude
or Goose
to fetch full contents of the articles using provided URLsVia uv
or uvx
. Install uv
and uvx
(if not installed):
curl -LsSf https://astral.sh/uv/install.sh | sh
Example command to run MCP server in stdio
mode:
uvx --python ">=3.10" --from devbrain devbrain-stdio-server
To add devbrain
to Claude's config, edit the file:
~/Library/Application Support/Claude/claude_desktop_config.json
and insert devbrain
to existing mcpServers
block like so:
{
"mcpServers": {
"devbrain": {
"command": "uvx",
"args": [
"--python", ">=3.10",
"--force-reinstall",
"--from",
"devbrain",
"devbrain-stdio-server"
]
}
}
}
Claude issues:
--force-reinstall
arg.uv
and uvx
binaries. See related: https://gist.github.com/gregelin/b90edaef851f86252c88ecc066c93719. If you encounter this error then run these commands in a Terminal:sudo mkdir -p /usr/local/bin
sudo ln -s ~/.local/bin/uvx /usr/local/bin/uvx
sudo ln -s ~/.local/bin/uv /usr/local/bin/uv
and restart Claude.
Command to start DevBrain MCP in stdio
mode:
uvx --python ">=3.10" --force-reinstall --from devbrain devbrain-stdio-server
and add this command to a config file of the AI agent (Cline or other).
Note that DevBrain requires Python 3.10+ support. Most systems have it installed. However VS Code (that Cline depends on) is shipped with Python 3.9. Use correct version of Python when running DevBrain MCP. A corrected version to launch DevBrain MCP looks like this:
uvx --python ">=3.10" --force-reinstall --from devbrain devbrain-stdio-server
You can run this MCP as a Docker container in STDIO mode. First build an image with build.sh
. Then add a config to Claude like so:
{
"mcpServers": {
"devbrain": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"svenai/mcp-devbrain-stdio:latest"
]
}
}
}
Test command to verify that docker container works correctly:
docker run -i --rm svenai/mcp-devbrain-stdio:latest
This project is released under the MIT License and is developed by mimeCam as an open-source initiative.
A self-hosted MCP Server registry for private AI agents, supporting both PostgreSQL and SQLite databases.
A comprehensive MCP server for managing OPNsense firewalls, offering over 300 tools for configuration and monitoring.
A bridge to use local LLMs from Ollama within the Model Context Protocol.
Generate visualizations from fetched data using the VegaLite format and renderer.
Programmatically control iOS simulators via stdio transport. Requires macOS with Xcode and installed iOS simulators.
An example of a remote MCP server deployable on Cloudflare Workers without authentication.
Provides seamless integration with SonarQube Server or Cloud, and enables analysis of code snippets directly within the agent context
A MCP Server that enhance your IDE with AI-powered assistance for Intlayer i18n / CMS tool: smart CLI access, versioned docs.
Analyze Solana metrics from InfluxDB and generate Grafana dashboards.
An intelligent tool for AI assistants to present multiple UI component designs for user selection.