@shippieapp/mcp
v0.1.1
Published
Model Context Protocol server for deploying apps to Shippie from AI tools like Claude Code and Cursor.
Maintainers
Readme
@shippieapp/mcp
A Model Context Protocol server that lets an AI assistant drop an app it just built and get back an unlisted live link — from ChatGPT/Claude/Codex/Cursor-style tools to a live link in under a minute.
The headline tool is drop_app (go live from generated HTML or a files map).
deploy_html, deploy, and more are also exposed.
Drops are unlisted (anyone with the link can open them), live for 24 hours unless claimed, and store data on the device that opened the app — no backend or cross-device sync.
Setup
Runs over stdio with one line of config — npx fetches it on first use.
Claude Desktop / Cursor / Claude Code (.mcp.json)
{
"mcpServers": {
"shippie": {
"command": "npx",
"args": ["-y", "@shippieapp/mcp@latest"]
}
}
}Codex CLI (~/.codex/config.toml)
[mcp_servers.shippie]
command = "npx"
args = ["-y", "@shippieapp/mcp@latest"]Use it
Ask the assistant to "drop this app and give me the link." It calls drop_app:
{
"title": "Quick Calculator",
"html_content": "<!doctype html><body><input id=a type=number><input id=b type=number><button onclick=\"out.textContent=Number(a.value)+Number(b.value)\">Add</button><output id=out></output></body>"
}…and returns the unlisted link, expiry, claim note, and an on-device-storage note.
For a multi-file app, pass files (a path → text map) with a root index.html.
Docs
Full guide with more examples: docs/mcp-cli-drop.md in the
Shippie repo. Terminal twin:
@shippieapp/cli.
MIT licensed.
