Puter
@puter
Puter MCP lets your AI tools (Claude Code, Codex, or any other MCP-compatible client) interact with your Puter resources: managing files, publishing websites, deploying workers, and more.
Overview
Puter MCP
The Puter MCP server lets you connect your AI coding tool to interact with the Puter platform directly.
Installation
Puter MCP runs over HTTP at https://mcp.puter.com/, so any MCP-compatible client can connect to it.
Claude Code:
claude mcp add --transport http --scope user puter https://mcp.puter.com/
Then run /mcp inside Claude Code and follow the prompt to authenticate with your Puter account.
Codex:
codex mcp add puter --url https://mcp.puter.com/
If you use a different MCP client, just point it at https://mcp.puter.com/. The server uses OAuth, so your client will walk you through signing in.
Features
What Else Can You Do?
Puter MCP lets you use the whole Puter platform from your AI tool.
- Filesystem: read, write, list, and delete files in your Puter cloud storage
- Hosting: publish and manage static sites at
<subdomain>.puter.site - Workers: deploy and run serverless JavaScript functions with public URLs
- Apps: register launchable Puter apps and check name availability
- Documentation: pull the latest Puter.js docs so generated code stays accurate
- Account: look up your account info with
whoami
You can find the full list of tools in the Puter MCP docs.
Server Config
{
"mcpServers": {
"puter": {
"type": "streamable-http",
"url": "https://mcp.puter.com"
}
}
}