puter-claude-mcp
Provides free, unlimited access to Claude AI models via Puter.js for AI coding agents and IDEs through the MCP protocol.
README
@anthelis/puter-claude-mcp
Free, unlimited Claude access for any AI coding agent or IDE — powered by Puter.js.
This is an MCP (Model Context Protocol) server that gives AI coding assistants like Antigravity, Cursor, Windsurf, and others access to Claude Sonnet 4.6 and Claude Fable 5 completely for free — no API keys, no billing, no limits.
It uses Puter.js (the "User-Pays" model) via a local browser bridge, so the requests run through your own logged-in Puter account in a browser tab.
Legal note: Each user must log into their own Puter.com account in the browser bridge. This project does not circumvent any API limits — it simply makes Puter's official free developer offering accessible via MCP. This project is not affiliated with, endorsed by, or sponsored by Puter or Anthropic. All Claude AI capabilities are provided by Puter.js under their Terms of Service.
How It Works
[ Your IDE ] [ Browser Tab ]
│ │
│ (MCP / stdio) │ (polls /api/poll)
▼ ▼
[ index.js ] ──(HTTP POST)──► [ relay.js ]
(MCP Server) (Express Relay)
│
│ (puter.ai.chat)
▼
[ Claude API ]
relay.js— A small Express server you run once. It holds requests from the MCP server and delivers them to the browser.index.js— The MCP server your IDE launches. It exposes theask_claudetool and talks to the relay via HTTP.- Browser tab — You open
http://localhost:8081in your browser. It polls the relay every second, sends requests to Claude via Puter.js, and posts the results back.
Prerequisites
- Node.js v18 or higher
- A free Puter.com account (sign up is free)
- An IDE that supports MCP (Antigravity, Cursor, Windsurf, VS Code with MCP extension, etc.)
Installation
Option A: npx (Recommended — no install needed)
# Run the relay server directly
npx @anthelis/puter-claude-mcp relay
That's it! No cloning, no npm install.
Option B: Install globally
npm install -g @anthelis/puter-claude-mcp
# Then run the relay:
puter-claude-relay
Option C: Clone from source
git clone https://github.com/ANTHELIS/puter-claude-mcp.git
cd puter-claude-mcp
npm install
npm run relay
Setup
Step 1: Start the Relay Server
Open a terminal in the project folder and run:
npm run relay
Keep this terminal open. You should see:
✅ Puter-Claude Relay Server running at http://localhost:8081
Step 2: Open the Browser Bridge
Open http://localhost:8081 in your web browser (Chrome, Edge, Firefox — any works).
You will be prompted to log in to Puter if you haven't already. Once logged in, the page will show:
✅ Connected — Waiting for IDE requests...
Keep this tab open while you code.
Step 3: Configure Your IDE
Add the following to your IDE's MCP configuration file:
{
"mcpServers": {
"puter-claude": {
"command": "npx",
"args": ["-y", "@anthelis/puter-claude-mcp"]
}
}
}
If you cloned from source, use
"command": "node"and"args": ["/absolute/path/to/@anthelis/puter-claude-mcp/index.js"]instead.
| IDE | Config file location |
|---|---|
| Antigravity IDE | C:\Users\<you>\.gemini\config\mcp_config.json |
| Cursor | ~/.cursor/mcp.json |
| Windsurf | ~/.codeium/windsurf/mcp_config.json |
| VS Code (MCP ext) | .vscode/mcp.json in workspace |
Step 4: Reload Your IDE
Reload the IDE window so it picks up the new MCP server. You're ready!
Usage
Once everything is set up, just ask your AI coding agent to "ask Claude" to do something:
- "Ask Claude to write a Python script that reads a CSV and outputs a chart"
- "Ask Claude to review my
index.jsfor bugs" - "Ask Claude to generate unit tests for this function"
The agent will call the ask_claude MCP tool, the browser tab will handle it silently, and Claude's response comes back in seconds.
Available Models
| Model | Puter.js name |
|---|---|
| Claude Sonnet 4.6 | claude-sonnet-4-6 |
| Claude Fable 5 | claude-fable-5 |
Configuration
You can configure the relay port via an environment variable:
PUTER_RELAY_PORT=9090 npm run relay
And set the relay URL for the MCP server:
{
"mcpServers": {
"puter-claude": {
"command": "node",
"args": ["/path/to/index.js"],
"env": {
"PUTER_RELAY_URL": "http://localhost:9090"
}
}
}
}
Stopping the Server
To stop the relay server, simply press Ctrl+C in the terminal running npm run relay.
Architecture Details
- The relay uses a request queue — only one Claude request is processed at a time.
- The browser bridge polls every second for new work, keeping the connection alive.
- The MCP server waits up to 120 seconds for a response before timing out.
- All communication is localhost-only — nothing leaves your machine except the Puter.js API call from your browser.
Contributing
PRs are welcome! Some ideas for improvements:
- [ ] Support for concurrent requests (queue-based)
- [ ] Support for streaming responses
- [ ] A richer bridge UI with request history
- [ ] Support for additional Puter.js models (GPT-4o, Gemini, etc.)
License
MIT — do whatever you want with it.
Credits
- Built with Puter.js — the "User-Pays" AI platform
- Uses the Model Context Protocol SDK by Anthropic
- Inspired by the Puter.js Free Claude API tutorial
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.