Setup Guide
ClaudeMax is a drop-in replacement for the Anthropic API. Pick your tool below and follow the steps.
Claude Code CLI
Official Anthropic terminal AI tool
npm install -g @anthropic-ai/claude-code$env:ANTHROPIC_API_KEY="sk-cm-your-api-key" $env:ANTHROPIC_BASE_URL="https://api.claudemax.pro/v1" $env:ANTHROPIC_MODEL="claude-opus-4.6" claude
$PROFILE file. Or use our one-click script below.Automatic Setup Recommended
One command configures Claude Code, MCP tools, env vars, and verifies your connection automatically.
Run one command to configure everything. You'll only need your API key.
Prerequisite: Make sure you have Node.js installed. Everything else is handled automatically.
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser irm https://api.claudemax.pro/setup.ps1 | iex
What the script does:
Manual MCP Configuration
If you prefer to configure manually instead of using the automatic script
npm install -g claudemax-mcp
%USERPROFILE%\.claude\settings.json:{
"env": {
"ANTHROPIC_AUTH_TOKEN": "sk-cm-your-api-key",
"ANTHROPIC_BASE_URL": "https://api.claudemax.pro/v1",
"ANTHROPIC_MODEL": "claude-opus-4.6",
"ANTHROPIC_SMALL_FAST_MODEL": "claude-haiku-4.5",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "claude-sonnet-4.6",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "claude-opus-4.6",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "claude-haiku-4.5",
"CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1"
},
"hasCompletedOnboarding": true
}%USERPROFILE%\.claude.json:{
"mcpServers": {
"ClaudeMax": {
"command": "npx",
"args": ["-y", "claudemax-mcp"],
"env": {
"CLAUDEMAX_API_KEY": "sk-cm-your-api-key",
"CLAUDEMAX_URL": "https://api.claudemax.pro"
}
}
}
}sk-cm-your-api-key with your actual API key in both files. The MCP server will automatically start when Claude Code launches.Included Tools
The ClaudeMax MCP adds these tools to your Claude Code session
web_searchSearch the web for real-time information — docs, news, APIs, current events, pricing, anything that requires up-to-date data from the internet.
understand_imageAnalyze images with AI — screenshots, diagrams, UI mockups, error messages, charts, photos. Supports JPEG, PNG, WebP, and GIF under 15MB.
Available Models
Use any of these as your ANTHROPIC_MODEL
claude-opus-4.6Recommendedclaude-sonnet-4.6claude-sonnet-4-5-thinkingclaude-opus-4.6-1mclaude-haiku-4.5API Reference
Endpoint details
https://api.claudemax.pro/v1/v1/messages— Anthropic format/v1/chat/completions— OpenAI format/v1/models— List models