{
  "markdown": "# InstaPods SDK\n\nTools and integrations for deploying and managing apps on [InstaPods](https://instapods.com) with AI assistants.\n\nInstaPods 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:\n\n## Integration Paths\n\n### Claude Code (CLI Skill)\n\nA skill that teaches Claude Code how to deploy and debug apps using the `instapods` CLI.\n\n**Setup:**\n\n1. Install the CLI:\n   ```bash\n   curl -fsSL https://instapods.com/install.sh | sh\n   instapods auth login\n   ```\n\n2. Copy the skill to your project:\n   ```bash\n   mkdir -p .claude/skills/instapods-cli\n   curl -fsSL https://raw.githubusercontent.com/instapods/sdk/main/skills/instapods-cli/SKILL.md \\\n     -o .claude/skills/instapods-cli/SKILL.md\n   ```\n\n3. Ask Claude Code to deploy:\n   ```\n   > deploy my app to instapods\n   > my app is returning 502, help me debug\n   > add a PostgreSQL database to my pod\n   ```\n\n### Claude Desktop / Claude.ai (MCP Skill)\n\nTwo options — use the MCP skill for guided workflows, or connect directly via MCP.\n\n**Option A: MCP Skill (recommended)**\n\nCopy the skill to your project:\n```bash\nmkdir -p .claude/skills/instapods-mcp\ncurl -fsSL https://raw.githubusercontent.com/instapods/sdk/main/skills/instapods-mcp/SKILL.md \\\n  -o .claude/skills/instapods-mcp/SKILL.md\n```\n\n**Option B: Direct MCP connection**\n\nAdd to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json`):\n\n```json\n{\n  \"mcpServers\": {\n    \"instapods\": {\n      \"url\": \"https://app.instapods.com/api/mcp\"\n    }\n  }\n}\n```\n\nOn first use, Claude will walk you through OAuth authentication. See [mcp/README.md](mcp/README.md) for the full setup guide.\n\nThe MCP server includes built-in prompts:\n- **deploy-app** — Guided deployment workflow\n- **debug-pod** — Systematic pod diagnosis\n- **getting-started** — Overview of available tools and resources\n\n## What's in This Repo\n\n```\nsdk/\n├── README.md                              # This file\n├── server.json                            # MCP Registry manifest (see below)\n├── skills/\n│   ├── instapods-cli/\n│   │   └── SKILL.md                       # Skill for Claude Code (uses CLI)\n│   └── instapods-mcp/\n│       └── SKILL.md                       # Skill for Claude Desktop/Claude.ai (uses MCP tools)\n├── mcp/\n│   └── README.md                          # MCP server setup guide\n└── cli/\n    └── README.md                          # CLI quick reference\n```\n\n## MCP Registry\n\nInstaPods is listed in the official [MCP Registry](https://registry.modelcontextprotocol.io) as\n`com.instapods/instapods`. `server.json` in this repo is the source of truth for that listing:\n\n```bash\ncurl -s \"https://registry.modelcontextprotocol.io/v0/servers?search=instapods\"\n```\n\nTo publish an update, bump `version` in `server.json`, then push a matching tag:\n\n```bash\ngit tag mcp-v1.1.0 && git push origin mcp-v1.1.0\n```\n\nThat runs [`.github/workflows/publish-mcp-registry.yml`](.github/workflows/publish-mcp-registry.yml),\nwhich publishes via `mcp-publisher`. The registry rejects a version that already exists, so every\npublish needs a new `version`.\n\nAuthentication is domain-based: the registry namespace `com.instapods/*` is proved by the Ed25519\npublic key served at `https://instapods.com/.well-known/mcp-registry-auth`. The workflow signs with\nthe matching private key from the `MCP_REGISTRY_PRIVATE_KEY` repo secret. GitHub OIDC is not an\noption here — it only grants the `io.github.*` namespace.\n\n## Links\n\n- [InstaPods Dashboard](https://app.instapods.com)\n- [Documentation](https://docs.instapods.com)\n- [CLI Releases](https://github.com/InstaPods/sdk/releases)\n- [MCP Registry listing](https://registry.modelcontextprotocol.io/v0/servers?search=instapods)\n\n## License\n\nMIT\n",
  "bytes": 3814,
  "sha": "995fabfdde8cbd9cc1a2bb2d3b81f18f20639756eb649b5acedf6a0e5aed551f",
  "repo_slug": "instapods/sdk",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_com_instapods_instapods_2dc83839/readme"
}