AiderMCP
Provides tools to view git status and recent commits, and automatically commit changes made by Aider.
Supports Google Gemini API as a model provider for Aider, allowing code improvements with Gemini models.
Supports OpenAI API as a model provider for Aider, allowing code improvements with OpenAI models.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AiderMCPimprove code quality in src/main.py"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🤖 AiderMCP: Aider AI Integration for Claude Desktop & Claude Code
AiderMCP is a Model Context Protocol (MCP) server that integrates Aider AI pair programming into Claude Desktop and Claude Code. Use Aider's powerful code editing capabilities through natural language conversations with Claude.
✨ Features
⚡ Zero-Install with uvx: Run directly from GitHub - no cloning or setup required!
🚀 One-Command Setup:
aider-mcp-server --setupfor manual installation🎯 Natural Language Interface: Use Aider through conversational commands
🔧 5 Powerful Tools: Code improvement, feature addition, bug fixing, refactoring, and status checking
🌍 Cross-Platform: Works on macOS, Windows, and Linux
🔐 Multi-Provider: Supports Anthropic, OpenAI, and Google Gemini API keys
Related MCP server: Aider MCP Server
📋 Prerequisites
Python 3.11 or 3.12 (Download)
⚠️ Python 3.13 not yet supported
Claude Desktop (Download)
API Key from at least one provider:
Google AI Studio (default)
Git installed and initialized in your project
🚀 Quick Start with uvx (Recommended)
The fastest way to use AiderMCP - no cloning or installation required!
1. Add to Claude Desktop Config
Edit your Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Add this configuration:
{
"mcpServers": {
"aider": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/fuzemobi/AiderMCP.git",
"aider-mcp-server"
],
"env": {
"GEMINI_API_KEY": "your-gemini-key-here",
"ANTHROPIC_API_KEY": "your-anthropic-key-here",
"OPENAI_API_KEY": "your-openai-key-here"
}
}
}
}Notes:
Add your API keys (at least one: Gemini, Anthropic, or OpenAI)
If you have other MCP servers, merge this into the existing
mcpServersobjectIf you forked this repo, update the URL to your fork's location
2. Restart Claude Desktop
That's it! uvx will automatically:
Download the repository
Install all dependencies (aider-chat, fastmcp)
Start the MCP server
🔧 Manual Installation (Alternative)
If you prefer manual installation or need to modify the code:
1. Install
# Clone the repository
git clone https://github.com/fuzemobi/AiderMCP.git
cd AiderMCP
# Create virtual environment (Python 3.11 or 3.12)
python3.12 -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
# Install
pip install -e .2. Set API Keys
# macOS/Linux
export GEMINI_API_KEY="your-key-here"
export ANTHROPIC_API_KEY="your-key-here" # optional
export OPENAI_API_KEY="your-key-here" # optional
# Windows PowerShell
$env:GEMINI_API_KEY="your-key-here"3. Configure Claude Desktop
aider-mcp-server --setup4. Restart Claude Desktop
Important: Restart Claude Desktop for changes to take effect.
🎮 Basic Usage
In Claude Desktop or Claude Code
Use natural language to work with Aider:
Improve Code Quality:
Use aider to improve code quality in src/main.pyAdd Features:
Ask aider to add user authentication with JWT tokensFix Bugs:
Have aider fix the connection timeout bug in server.pyRefactor Code:
Get aider to refactor the database module for better performanceCheck Status:
Use aider to show git status and recent commits🛠️ Available Tools
Tool | Description |
improve_code | Improve code quality, add type hints, enhance error handling |
add_feature | Add new features to your application |
fix_bug | Fix bugs and issues in your codebase |
refactor | Refactor code for better structure and performance |
get_status | View git status and recent commits |
Tool Parameters
All tools support these optional parameters:
files: Specific files to work on
model: AI model to use (default:
gemini/gemini-1.5-pro-latest)auto_commit: Automatically commit changes (default:
True)project_path: Project directory path (default: current directory)
🏗️ About Aider
Aider is an AI pair programming tool that works with your code. It can:
Edit multiple files at once
Make coordinated changes across your codebase
Understand your project structure
Follow coding conventions and patterns
Create git commits automatically
AiderMCP makes Aider accessible through Claude's conversational interface, letting you describe what you want in natural language.
🚨 Troubleshooting
Tools not appearing in Claude Desktop?
Restart Claude Desktop after running setup
Re-run:
aider-mcp-server --setupCheck config file exists:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Python version errors?
python3 --version # Must be 3.11 or 3.12
# Recreate venv if needed:
rm -rf .venv
python3.12 -m venv .venv
source .venv/bin/activate
pip install -e .API key issues?
# Verify keys are set
echo $GEMINI_API_KEY
# Or add to config file manually after running setup📄 License
MIT License - see LICENSE file for details.
🙏 Acknowledgments
Made with ❤️ for developers who want AI-powered coding in Claude
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fuzemobi/AiderMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server