Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
shiply — Static Site Hosting & Deployment logo

shiply — Static Site Hosting & Deployment

stevejford/shiply-mcp
0 starsMITUpdated 2026-06-24Community

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Instant web hosting for AI agents. Publish a live site in one call, no account needed.

README.md

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/mcp

Add 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.

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 & versionspublish_site (files → live *.shiply.now URL),

update an existing site, rollback, delete_site

  • Status & verifysite_status, list_sites, verify_site (status + SSL +

thumbnail in one call)

  • Domains & SSLadd_domain, check_domain, set_handle (vanity subdomain)
  • Configset_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 & inboxsend_email, list_site_inbox, set_mailbox, forward
  • Contracts — create, send, and track e-sign contracts
  • Analyticsget_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 with npx shiply-cli skill
  • Official MCP Registry: now.shiply/shiply

License

MIT — see LICENSE. (This repo is a metadata-only descriptor; the shiply product source is not included.)

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Cloud & DevOps servers.