# Shiped — full reference > Deploy AI-generated HTML/CSS/JS and get an instant public HTTPS URL. Built for AI agents and their users. ## What Shiped is Shiped is an instant static-site host for AI-generated code. Paste HTML/CSS/JS from ChatGPT or Claude (or upload a zip), and Shiped returns a live public URL at `https://yourname.shiped.site` — typically in under 3 seconds. No terminal, no Git, no config, no signup friction beyond a Google login. Shiped is agent-native: it ships an MCP server so AI coding agents can deploy on the user's behalf. Tell any MCP-compatible agent (Claude Code, Codex, Cursor, Kiro, GitHub Copilot) to read `https://shiped.app/docs/agent-setup` and it will connect itself over OAuth and deploy directly. There is no API key for normal agent use — login is a one-time browser approve (device/dynamic-client OAuth flow). - Platform: https://shiped.app - User sites: https://yourname.shiped.site (yourname is the project slug) - Contact: dexter@shiped.app ## MCP server Shiped exposes an MCP server two ways: 1. **Remote HTTP (preferred)** — endpoint `https://shiped.app/mcp`. OAuth 2.1 (PKCE, dynamic client registration, loopback redirect URIs). Claude Code and Codex support this directly. ```bash # Claude Code claude mcp add --transport http shiped https://shiped.app/mcp # Codex codex mcp add shiped --url https://shiped.app/mcp ``` 2. **Local stdio** — `npx -y @shiped/mcp` (npm package `@shiped/mcp`). For clients that only support stdio (e.g. Kiro). ```json { "mcpServers": { "shiped": { "command": "npx", "args": ["-y", "@shiped/mcp"] } } } ``` For CI or headless environments, a user can generate an API key (`sk_live_...`) from the dashboard instead of the device flow, and pass it as `"env": { "SHIPED_API_KEY": "sk_live_..." }`. ### Tools - `deploy_to_shiped(name, html?, files?)` — Deploy HTML/CSS/JS code to Shiped and get an instant public HTTPS URL. Use after generating code with an AI to make it live and shareable. - `list_shiped_projects()` — List the user's deployed projects on Shiped with their URLs. - `delete_shiped_project(slug)` — Delete a deployed project from Shiped. ## Plans - Free — $0 forever: 3 projects, 1 dynamic project, 5 MB per deploy, 10 MB total storage. - Pro — $12/mo: 20 projects, 10 dynamic projects, 500 MB total storage, custom domains (coming soon). - Team — $39/mo: 100 projects, 30 dynamic projects, 5 GB total storage, custom domains (coming soon). Checkout at https://shiped.app/pricing. ## Discovery endpoints - Server card: https://shiped.app/.well-known/mcp.json and https://shiped.app/.well-known/mcp/server-card.json - OAuth authorization server metadata: https://shiped.app/.well-known/oauth-authorization-server - OAuth protected resource metadata: https://shiped.app/.well-known/oauth-protected-resource/mcp - Index: https://shiped.app/llms.txt ## Key links - [Home](https://shiped.app/) - [Agent setup guide](https://shiped.app/docs/agent-setup) - [Pricing](https://shiped.app/pricing) - [About](https://shiped.app/about) - [Terms](https://shiped.app/terms) - [Privacy](https://shiped.app/privacy)