Anthropic recently shipped Developer Mode for Claude Desktop (now called Cowork), which means you can route Claude through any Anthropic-compatible API gateway. No more subscription lock-in — pay per token, use your own key, and access multiple models through one endpoint.
Why This Matters
- Claude Pro/Max at $20-$100/month still has usage limits for heavy users
- Per-token API billing means you pay only for what you use
- One gateway key can give you access to 22+ models (Claude, GPT, Gemini)
- Enterprise teams can route through their own billing infrastructure
Setup in 3 Steps
Step 1: Enable Developer Mode
Open Claude Desktop → Menu Bar → Help → Troubleshooting → Enable Developer Mode
A new "Developer" menu will appear in the menu bar.
Step 2: Configure Your Gateway
Go to Developer → Configure third-party inference
Select "Gateway (Anthropic-compatible)" as the inference backend and enter:
| Field | Value |
|---|---|
| Base URL | https://futurmix.ai |
| API Key | Your FuturMix API key |
| Auth Scheme | Bearer |
Important: Don't append /v1 to the Base URL. Claude Desktop auto-appends the API path.
Step 3: Apply and Restart
Click "Apply locally" and restart the app. Done.
Your Claude Desktop will now route through the FuturMix gateway.
What is FuturMix?
FuturMix is an AI gateway that provides access to 22+ models from multiple providers through a single OpenAI-compatible API. It supports both the OpenAI /v1/chat/completions format and the Anthropic /v1/messages format.
Available models include:
- Anthropic: Claude Opus 4.6, Sonnet 4.5, Haiku 4.5
- OpenAI: GPT-5.4, GPT-5.4 Mini
- Google: Gemini 2.5 Pro, Gemini 2.5 Flash
You can also use FuturMix with other tools that support custom base URLs.
With the OpenAI Python SDK:
from openai import OpenAI
client = OpenAI(
api_key="your-futurmix-key",
base_url="https://futurmix.ai/v1"
)
response = client.chat.completions.create(
model="claude-sonnet-4-5-20250929",
messages=[{"role": "user", "content": "Hello!"}]
)
With Aider:
export OPENAI_API_BASE=https://futurmix.ai/v1
export OPENAI_API_KEY=your-futurmix-key
aider --model claude-sonnet-4-5-20250929
Troubleshooting
Connection refused or timeout:
- Check that the Base URL is
https://futurmix.ai(no/v1suffix) - Verify your API key is valid
Authentication error:
- Make sure Auth Scheme is set to Bearer
- Double-check there are no extra spaces in the API key
Models not responding:
- Confirm the model ID is correct (e.g.,
claude-sonnet-4-5-20250929) - Check your account balance on the FuturMix dashboard
Summary
Claude Desktop Developer Mode opens up an interesting option for power users who want per-token billing instead of a flat subscription. If you are already using an API gateway for your applications, you can now use the same key and endpoint for Claude Desktop too.
The setup takes about 2 minutes. Give it a try and let me know how it goes in the comments.




