ai.artidrop/artidrop
Official4 toolsPublish HTML, Markdown, and multi-file sites as shareable URLs instantly via MCP.
Instantly publish HTML, Markdown, and multi-file sites as shareable URLs.
Captured live from the server via tools/list.
publish
Publish HTML or Markdown content as a shareable URL. Pass `content` byte-for-byte from the source — do not retype, reformat, minify, summarize, or 'clean up' the input; even one stray character can break inline scripts on the published page. If the content is too large to copy verbatim through the model, use the REST endpoint `POST /v1/artifacts` (or `/v1/artifacts/upload` for ZIPs) instead. For Markdown, optionally include images as base64-encoded data.
Parameters (5)
- contentstringrequired
The HTML or Markdown content to publish. Copy this verbatim from the source file or buffer — do not modify, reformat, or regenerate it. Whitespace, emojis, comments, and exact character sequences inside <script> and <style> blocks all matter. If you cannot fit the full content unmodified in one tool call, fall back to POST /v1/artifacts via curl.
- formatstringrequired
Content format
- titlestring
Artifact title (default: Untitled)
- visibilitystring
Visibility (default: unlisted)
- imagesarray
Images referenced in the markdown content. Only used when format is 'markdown'.
publish_site
Publish a multi-file HTML site from a base64-encoded ZIP file. The ZIP must contain an index.html at its root. For sites larger than ~10MB — or whenever you have the file on disk — prefer the REST API /v1/artifacts/upload endpoint to avoid base64 overhead and to guarantee byte-faithful upload.
Parameters (3)
- zip_base64stringrequired
Base64-encoded ZIP file containing the site files
- titlestring
Site title (default: Untitled)
- visibilitystring
Visibility (default: unlisted)
get
Get artifact metadata. Set include_content to true to also return the full HTML content.
Parameters (2)
- idstringrequired
Artifact ID or short ID
- include_contentboolean
Include the full HTML content in the response (default: false)
versions
List version history of an artifact
Parameters (1)
- idstringrequired
Artifact ID
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"artidrop": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://artidrop.ai/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.