htmldrop-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@htmldrop-mcpPublish a single-page HTML CV for Alex Rivera."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@htmldrop.app/mcp
Model Context Protocol server for htmldrop — publish HTML or Markdown to a real hosted URL straight from Claude Code, Claude Desktop, Cursor, Cline, or any MCP-aware client.
Note: this is htmldrop.app. An unrelated project also called "htmldrop" exists at htmldrop.link (npm
htmldrop-mcp) — different product, different API.
Quick start — remote server (recommended)
No install, no API keys. Add the hosted server and sign in with OAuth in your browser:
claude mcp add --transport http htmldrop https://htmldrop.app/mcpThe first time the model publishes, your browser opens a sign-in — approve once and you're done. Works the same in any MCP client that supports remote (streamable HTTP) servers with OAuth; see the per-client pages on htmldrop.app/agents.
Then just ask: "Make a single-page HTML CV for Alex Rivera and publish it to htmldrop." The model calls htmldrop_publish and replies with the live URL.
Related MCP server: brewpage-mcp
Interactive clients — always use the remote
Claude Code (above), Claude Desktop (Settings → Connectors → Add custom connector → https://htmldrop.app/mcp), Cursor (Settings → MCP → Add remote server), and other remote-capable clients should all use the hosted URL. You sign in once in the browser; no credential is ever written to a config file. Per-client walkthroughs: htmldrop.app/agents.
CI, scripts, and headless use — local server (stdio)
Automation can't do a browser sign-in, so the stdio server authenticates with an API token — created at htmldrop.app/dashboard/settings → API tokens (hsk_live_…, shown once). Store it in your secret manager or CI's encrypted secrets and reference it — never write the literal value into a config file or repository.
GitHub Actions example:
- name: Publish report page
env:
HTMLDROP_API_TOKEN: ${{ secrets.HTMLDROP_API_TOKEN }}
run: |
npx -y @htmldrop.app/mcp & # stdio server for your MCP-driving tool
# …or call the REST API directly: https://htmldrop.app/docs/apiShell/session example (token from your OS keychain or secret manager, not typed inline):
export HTMLDROP_API_TOKEN="$(security find-generic-password -s htmldrop -w)" # macOS Keychain
npx -y @htmldrop.app/mcpIf a client genuinely can't speak remote MCP and isn't automation (rare now), the classic mcpServers JSON block with an env entry works — accept that it stores the token in that client's config file, and prefer the .mcpb bundle for Claude Desktop, which keeps the token in the OS keychain instead.
Tools
Tool | What it does |
| Publish an HTML or Markdown document. Returns the public share URL, site id, and slug. Accepts an optional |
| List every site the authenticated tenant owns. |
| Delete a site by id. |
Configuration (local server)
Env var | Default | Purpose |
| (required for stdio) | The |
|
| Override for staging or self-hosted htmldrop instances. |
| (derived from | User-facing origin for share links ( |
Plan limits
The MCP server hits the same API your dashboard does, so plan caps apply — free accounts keep 3 drops, paid plans (from $5/mo) raise caps and add permanence, password protection, version history, and custom domains. Current numbers: htmldrop.app/#pricing. When you hit a cap the tool call returns a clear error (plan_limit) that the model surfaces in chat — no silent failure.
Security notes
The remote server (
https://htmldrop.app/mcp) follows the MCP authorization spec: OAuth 2.1 with PKCE, discovery via RFC 9728 protected-resource metadata, and short-lived tokens your client refreshes automatically. Tokens are never passed in URLs. This is the recommended path for humans in MCP clients — no static credential exists anywhere.Local-server API tokens (
hsk_live_…) carry full tenant privileges — treat them like a password. Keep them out of source control, store them in a secret manager or your CI's encrypted secrets (not a committed config file), and revoke from Settings → API tokens the moment one may have leaked (revocation is effective immediately). The.mcpbone-click install for Claude Desktop stores the token in your OS keychain rather than a plaintext file.The stdio server runs on your machine. No traffic flows through htmldrop other than the API calls the tool makes on your behalf.
Development
npm ci
npm test # builds + runs the node:test suiteThis repository is a read-only mirror of the mcp/ directory in htmldrop's main (private) repository — the source of truth. Issues and PRs are welcome here; accepted changes are applied upstream and sync back automatically.
License
MIT — © Middle East Software Solutions Limited
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
Flicense-qualityBmaintenanceMCP server that wraps the Slideless HTTP API as tools for listing, sharing, uploading, and managing HTML presentations from any MCP host without installing the CLI.Last updated- Alicense-qualityAmaintenanceMCP server for BrewPage, a free no-signup hosting service. Lets AI agents publish HTML, Markdown, JSON, files, or a full multi-file static site and get a public URL instantly via a REST API.Last updated2Apache 2.0
- Flicense-qualityCmaintenanceEnables publishing, updating, and sharing HTML artifacts with strict security isolation (origin separation, CSP, API keys) via MCP tools.Last updated1
- Alicense-qualityCmaintenancePublish and manage shareable HTML/Markdown pages with access control and comments via MCP clients.Last updatedMIT
Related MCP Connectors
List, share, upload, and manage Slideless HTML presentations from any MCP host.
Publish HTML, files, or a URL to a permanent public URL, then update it — from any MCP agent.
Publish AI-generated HTML & Markdown to a hosted, shareable URL via MCP.
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/middleeastsoftware/htmldrop-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server