InstaPods
Deploy and manage hosting pods from Claude, Cursor, or any MCP client. Localhost to live URL in one step.
InstaPods SDK
Tools and integrations for deploying and managing apps on InstaPods with AI assistants.
InstaPods is container hosting for developers — deploy Node.js, Python, PHP, and static apps with a single command. This SDK provides two ways to integrate InstaPods with Claude:
Integration Paths
Claude Code (CLI Skill)
A skill that teaches Claude Code how to deploy and debug apps using the instapods CLI.
Setup:
-
Install the CLI:
curl -fsSL https://raw.githubusercontent.com/instapods/sdk/main/cli/install.sh | bash instapods auth login -
Copy the skill to your project:
mkdir -p .claude/skills/instapods-cli curl -fsSL https://raw.githubusercontent.com/instapods/sdk/main/skills/instapods-cli/SKILL.md \ -o .claude/skills/instapods-cli/SKILL.md -
Ask Claude Code to deploy:
> deploy my app to instapods > my app is returning 502, help me debug > add a PostgreSQL database to my pod
Claude Desktop / Claude.ai (MCP Skill)
Two options — use the MCP skill for guided workflows, or connect directly via MCP.
Option A: MCP Skill (recommended)
Copy the skill to your project:
mkdir -p .claude/skills/instapods-mcp
curl -fsSL https://raw.githubusercontent.com/instapods/sdk/main/skills/instapods-mcp/SKILL.md \
-o .claude/skills/instapods-mcp/SKILL.md
Option B: Direct MCP connection
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"instapods": {
"url": "https://app.instapods.com/api/mcp"
}
}
}
On first use, Claude will walk you through OAuth authentication. See mcp/README.md for the full setup guide.
The MCP server includes built-in prompts:
- deploy-app — Guided deployment workflow
- debug-pod — Systematic pod diagnosis
- getting-started — Overview of available tools and resources
What's in This Repo
sdk/
├── README.md # This file
├── skills/
│ ├── instapods-cli/
│ │ └── SKILL.md # Skill for Claude Code (uses CLI)
│ └── instapods-mcp/
│ └── SKILL.md # Skill for Claude Desktop/Claude.ai (uses MCP tools)
├── mcp/
│ └── README.md # MCP server setup guide
└── cli/
└── README.md # CLI quick reference
Links
License
MIT
Related Servers
Remote MCP Server on Cloudflare
A remote MCP server deployable on Cloudflare Workers, featuring OAuth login support and local development capabilities.
Oracle Service Cloud by CData
A read-only MCP server by CData that enables LLMs to query live data from Oracle Service Cloud.
Descope MCP Server
Interact with Descope's Management APIs to search and retrieve project information.
UCM (Universal Commerce Marketplace)
API marketplace giving AI agents instant access to 100 services (web search, image gen, code sandbox, TTS, NASA, recipes, Pokemon, and 90+ more) through a single MCP server. One API key, $1.00 free credits, 87 free services.
Beyond Menu Salesforce MCP
Integrate with Salesforce to perform actions like testing connections and running queries.
Pronunciation Assessment
AI-powered English pronunciation scoring at phoneme level. 17MB model, sub-300ms, returns IPA/ARPAbet notation with per-phoneme scores.
Remote MCP Server (Authless)
A remote MCP server deployable on Cloudflare Workers without authentication.
DoorDash MCP Server
An MCP server that bridges the DoorDash Drive API with MCP-compatible clients.
CoinStats
Access cryptocurrency market data, portfolio tracking, and news from the CoinStats API.
Cloudflare MCP Server
A template for deploying a remote MCP server on Cloudflare Workers without authentication. It supports one-click deployment or local setup via npm.