subelsky/bundler_mcp
A Model Context Protocol (MCP) server enabling AI agents to query information about gems in a Ruby project's Gemfile, including source code and metadata.
Platform-specific configuration:
{
"mcpServers": {
"bundler_mcp": {
"command": "npx",
"args": [
"-y",
"bundler_mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
A Model Context Protocol (MCP) server enabling AI agents to query information about dependencies in a Ruby project's Gemfile. Built with fast-mcp.
[](https://github.com/subelsky/bundler_mcp/actions/workflows/main.yml) [](https://badge.fury.io/rb/bundler_mcp)
Install the gem and add to the application's Gemfile by executing:
bundle add bundler_mcp --group=developmentbundle binstubs bundler_mcp{
"mcpServers": {
"bundler-mcp": {
"command": "/Users/mike/my_project/bin/bundler_mcp"
}
}
}{
"mcpServers": {
"bundler-mcp": {
"command": "/Users/mike/my_project/bin/bundler_mcp",
"env": {
"BUNDLER_MCP_LOG_FILE": "/Users/mike/my_project/log/mcp.log",
"BUNDLE_GEMFILE": "/Users/mike/my_project/subdir/Gemfile"
}
}
}
}The server provides two tools for AI agents:
Lists all bundled Ruby gems with their:
README and CHANGELOG)Retrieves detailed information about a specific gem, including:
BUNDLE_GEMFILE: Used by Bundler to locate your Gemfile. If you use thLoading reviews...