Installation
Install the Augments MCP Server and configure Claude Desktop in under 60 seconds.
Prerequisites:
Python 3.11+ and uv package manager
curl -LsSf https://astral.sh/uv/install.sh | sh
Clone and install:
git clone https://github.com/augmnt/augments-mcp-server.git
cd augments-mcp-server
uv sync
💡 Why uv?
uv is a fast Python package installer and resolver, written in Rust. It provides faster dependency resolution and installation compared to pip.
Start the server:
# From the augments-mcp-server directory
uv run augments-mcp-server
✅ Success Indicators
• Server starts without errors
• Framework registry loads successfully
• Cache system initializes
🔧 Development Mode
For development with auto-reload:
uv run fastmcp dev src/augments_mcp/server.py
Add with Claude Code CLI (Recommended):
The easiest way to configure the MCP server with Claude Code
# Add the MCP server (from augments-mcp-server directory)
claude mcp add augments \
-e AUGMENTS_CACHE_DIR="~/.cache/augments-mcp-server" \
-e GITHUB_TOKEN="your_github_token" \
-- uv run augments-mcp-server
# Verify it was added
claude mcp list
✅ Benefits of Claude Code CLI
• Automatic configuration with proper paths
• Easy to manage and update
• Built-in verification commands
• No manual file editing required
💡 Configuration Notes
• Replace /path/to/augments-mcp-server
with the actual path where you cloned the repository
• The GITHUB_TOKEN
is optional but recommended for higher API rate limits
• For Claude Code CLI: run commands from within the augments-mcp-server directory
• Configuration scopes: CLI (local), .mcp.json (project), Claude Desktop (global)
1. Restart Claude Desktop
Close and reopen Claude Desktop to load the MCP server configuration.
2. Test with Claude Code
Try this example prompt in Claude Code:
Show me React components with TypeScript and Tailwind CSS
You should notice more accurate, framework-aware code generation with current patterns.
3. Check Available Tools
Claude Code now has access to these Augments tools:
🎉 Installation Complete!
Augments is now enhancing your Claude Code experience with real-time framework context. Your AI assistant now has access to the latest documentation for 92 frameworks.
Next steps:
- Explore the supported frameworks
- Learn about advanced configuration
- Check out real-world examples