InstaServer
Uses Cloudflare quick tunnels to expose deployed pods with public HTTPS URLs, including retry handling for tunnel registration.
Manages deployable pods as Docker containers, including creating, starting, stopping, deleting, uploading files, executing commands, and retrieving logs.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@InstaServerdeploy a static site from ./dist and give me the URL"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
InstaServer
A free, open-source, self-hosted alternative to InstaPods, Vercel, and other centralized deploy platforms.
InstaServer is an MCP server that gives an AI agent (Claude Code, or any MCP client) the same kind of tools InstaPods offers — deploy_pod, exec_command, get_logs, read_file/write_file, and so on — except every "pod" is a real Docker container running on your own machine, with a public HTTPS URL from a free Cloudflare quick tunnel. No account, no signup, no payment method, no per-deploy billing, no platform-imposed rate limit.
Why this exists
Centralized platforms (Vercel, Netlify, InstaPods, etc.) are convenient until their free/hobby tier throttles you — a burst of a dozen pushes in an hour can trip a build-rate limit and silently freeze your production deploys for days, with no obvious signal that it happened. InstaServer trades platform convenience for owning the whole stack: your machine, your Docker engine, your uptime, no ceiling.
Trade-off, stated plainly: your machine has to be on for the pod to be reachable, and the free Cloudflare quick tunnel is explicitly best-effort (Cloudflare's own words: "no uptime guarantee"). This is the right tool for local development, demos, side projects, and internal tools — not a drop-in replacement for production hosting of a business-critical site with an SLA.
Related MCP server: WEATHGARDS
Requirements
Node.js 20+
colima (or Docker Desktop) — provides the Docker engine
cloudflared — provides free quick tunnels
brew install colima docker cloudflared
colima start --cpu 2 --memory 4 --disk 20Install
git clone <this repo> instaserver
cd instaserver
npm install
npm run buildRegister it as an MCP server
With the Claude Code CLI:
claude mcp add instaserver -- node /absolute/path/to/instaserver/dist/index.jsOr add it manually to your MCP client's config (e.g. ~/.claude.json under mcpServers, or a project's .mcp.json):
{
"mcpServers": {
"instaserver": {
"command": "node",
"args": ["/absolute/path/to/instaserver/dist/index.js"]
}
}
}Tools
Tool | What it does |
| List runtime presets ( |
| Register a new pod (volume only, nothing running yet) |
| Main tool. Create-if-missing, upload files, install deps, (re)start, open a public URL, verify it answers |
| List all pods and status |
| Get one pod's details/URL/status |
|
|
| Remove a pod's container, volume, and tunnel |
| Run a shell command inside a pod |
| Recent stdout/stderr from the pod's app |
| Inspect and edit files without a full redeploy |
Presets
static —
nginx:alpine, serves the uploaded files as-is. Entry:index.html.nodejs —
node:20-alpine, runsnpm installifpackage.jsonis present, thennode <entry>. Entry:server.js/index.js/app.js.PORT=8080is set for you.python —
python:3.12-alpine, runspip install -r requirements.txtif present, thenpython <entry>. Entry:main.py/app.py/server.py.PORT=8080is set for you.
How it works
Each pod is a named Docker volume (persistent app storage) + a named container built from the preset's image, with the volume mounted at the app root and the container's port published to a free host port. deploy_pod stages your files locally, docker cps them into the container, and boots it with sh -c "<install> && exec <start>". A cloudflared quick tunnel is opened against the host port to get a public https://*.trycloudflare.com URL — reachability is verified before the URL is handed back, retrying with a fresh hostname up to 3 times if Cloudflare's registration doesn't come up cleanly (this happens occasionally; it's a known characteristic of the free tier, not a bug).
Pod state lives in ~/.instapod-free/state.json so the MCP server can restart without losing track of what's running.
Limitations (read before relying on this)
Your machine needs to be on and awake for pods to be reachable.
Free Cloudflare quick tunnels are best-effort — no SLA, hostnames can occasionally need a retry.
No built-in TLS cert management beyond what the tunnel provides, no custom domains, no multi-region.
Presets are minimal by design (three runtimes). Extending
src/presets.tsis straightforward if you need another.
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceRuns isolated AI agents in Docker containers with persistent workspaces and conversation history. Each agent has access to file operations, shell commands, GitHub integration, and can connect to external MCP servers for additional tools.3MIT
- FlicenseNot gradedqualityCmaintenanceExposes MCP tools that enable remote LLMs to query local Docker containers, OS processes, and system services in real time.
- AlicenseBqualityAmaintenanceEnables AI agents to manage Docker containers, images, Compose stacks, health checks, and logs through a unified MCP interface, ensuring containers stay running with self-healing capabilities.311005MIT
- AlicenseNot gradedqualityCmaintenanceExposes a Linux host with shell, Python, and filesystem tools as MCP tools over HTTPS, enabling AI agents to execute commands and manage files remotely.11MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Hosted MCP for creating, checking, deploying, and hosting static sites for AI agents.
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CodesbyFebin/instaserver'
If you have feedback or need assistance with the MCP directory API, please join our Discord server