shiply — Static Site Hosting & Deployment
Shiply is a static site hosting and deployment server. Here's what you can do with it:
Publish & update sites – Deploy a website to a live
*.shiply.nowURL by passing inline files or a local directory. Works anonymously (no account needed; sites last 24 hours) or linked to an account (permanent). Update existing sites viaclaimToken(anonymous) orslug(owned). Supports SPA mode and custom TTLs.Check site status – Look up a site by slug to see if it's live, whether it's anonymous or owned, its expiry, and its public URL.
Roll back a site – Instantly restore a previously-published version using a
versionId(owned sites only).Delete sites & list deployments – Remove existing sites or list all deployed sites.
Custom domains & SSL – Attach a custom hostname to a site (DNS instructions provided, SSL auto-issued) and poll provisioning status.
Set a vanity subdomain (handle) – Configure a custom subdomain for a site.
Environment variables – Set encrypted per-user environment variables.
Access control – Configure password protection or invite-only access.
Site data – Read, write, and export visitor records and collections.
SQL databases – Provision, query, and branch Cloudflare D1 or Neon Postgres databases.
Edge/serverless functions – Deploy serverless functions alongside static sites.
Email – Send emails, manage a site mailbox, list inbox contents, and configure forwarding.
E-sign contracts – Create, send, and track contracts.
Analytics – Retrieve site analytics including views and referrers.
Provides per-site SQL databases using Cloudflare D1, enabling agents to provision, query, and branch databases.
shiply — MCP server
shiply is the production backend for anything an agent builds — not just static hosting. An agent can publish any app in a single call — no account, no config — and then give it a real backend over the same MCP server: a SQL database, server functions, SSR, email (send and receive), custom domains, SSL, environment variables, site data, lead capture, and a marketplace to sell the site it built. Flat price, no usage meter.
The recommended way to use shiply is the hosted, remote MCP endpoint — connect
to the live URL, nothing to run. This repo also ships a small local stdio MCP
server (npx shiply-mcp / node index.mjs) that wraps shiply's public REST API
directly (it is a real local server, not a proxy), for clients or hosts that prefer
a local process. Listed on the Official MCP Registry as now.shiply/shiply.
Connect
Remote MCP endpoint (Streamable HTTP):
https://shiply.now/mcpAdd it to an MCP client (Claude Desktop, Cursor, Claude Code, etc.):
{
"mcpServers": {
"shiply": {
"url": "https://shiply.now/mcp"
}
}
}Local (stdio)
Prefer a local process? Run the bundled server — it calls shiply's public REST API directly (no proxy to the hosted endpoint):
{
"mcpServers": {
"shiply": {
"command": "npx",
"args": ["-y", "shiply-mcp"]
}
}
}Or clone this repo and run npm install && node index.mjs. Set SHIPLY_API_KEY
(shp_…) for owned-site operations; publish_site works without it. Local tools:
publish_site, site_status, rollback_site, add_custom_domain,
check_custom_domain.
Related MCP server: Netlify MCP Server
Auth
Auth is optional. publish_site works anonymously — anonymous sites go live
instantly and can be claimed into an account later. Pass a Bearer API key
(Authorization: Bearer shp_…) to manage owned sites and unlock variables,
custom domains, databases, and analytics. Mint a key from the email-code flow in
llms.txt.
Tools
The live, authoritative tool list + JSON schemas are always at
/.well-known/mcp.json. By area:
Publish & versions —
publish_site(files → live*.shiply.nowURL), update an existing site,rollback,delete_siteStatus & verify —
site_status,list_sites,verify_site(status + SSL + thumbnail in one call)Domains & SSL —
add_domain,check_domain,set_handle(vanity subdomain)Config —
set_variable(encrypted per-user env), site access (password / invite-only)Site Data — read/write/export visitor records and collections
Databases — per-site SQL: Cloudflare D1 and Neon Postgres (provision, query, branch)
Edge functions — deploy serverless functions alongside the static site
Email & inbox —
send_email,list_site_inbox,set_mailbox, forwardContracts — create, send, and track e-sign contracts
Analytics —
get_analytics(views, referrers)
Examples
Publish a folder, get a live URL (anonymous, no account):
// tool: publish_site
{ "files": [ { "path": "index.html", "content": "<h1>Hi</h1>" } ] }
// → { "url": "https://merry-maple-3kf2.shiply.now", "claimUrl": "..." }Confirm it's live (status + SSL + screenshot) before reporting done:
// tool: verify_site
{ "slug": "merry-maple-3kf2" }
// → { "status": "LIVE", "ssl": { "valid": true }, "thumbnailUrl": "..." }Pricing
Flat $0 / $8 / $24 — no usage meter, no surprise overage bill. See https://shiply.now/pricing.
Links
Site: https://shiply.now
Docs: https://shiply.now/docs
Machine guide: https://shiply.now/llms.txt
OpenAPI: https://shiply.now/openapi.json
MCP metadata: https://shiply.now/.well-known/mcp.json
Skill:
shiply/SKILL.md· install withnpx shiply-cli skillOfficial MCP Registry:
now.shiply/shiply
License
MIT — see LICENSE. (This repo is a metadata-only descriptor; the shiply product source is not included.)
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
AlicenseBqualityAmaintenanceThe Hostinger MCP server enables seamless integration of Hostinger’s API with AI tools. This server exposes Hostinger API endpoints as callable tools, allowing AI models to fetch live data or perform real-time actions on hosting infrastructure.Last updated10066,596138MIT
Netlify MCP Serverofficial
AlicenseBqualityCmaintenanceEnables code agents to interact with Netlify services through the Model Context Protocol, allowing them to create, build, deploy, and manage Netlify resources using natural language prompts.Last updated916,30652ISC- Alicense-qualityDmaintenanceTurns any static website into an MCP-searchable knowledge base by deploying a Cloudflare Worker that provides full-text search tools, enabling AI assistants to search and retrieve content from your site.Last updated1MIT
- AlicenseAqualityCmaintenancePublish live web pages from AI coding agents. Instant shareable URLs for dashboards, landing pages, and reports with password protection.Last updated41MIT
Related MCP Connectors
Agent-native web hosting — deploy sites, manage DNS, register domains, scale infrastructure
Publish the website you built with AI to a live public URL — straight from chat, no setup.
AI agent website builder. Create and publish link-in-bio sites via MCP or REST API.
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/stevejford/shiply-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server