← All servers

artidrop

ai.artidrop/artidrop v1.1.0
QS 35 Official Registry other

Publish HTML, Markdown, and multi-file sites as shareable URLs instantly via MCP.

Own this server? Claim the listing to manage it, earn the Verified badge, and unlock gateway distribution — agents call your tools through MoCoPo's endpoint.

Install connect over streamable-http

Run in your terminal
claude mcp add artidrop --transport http https://artidrop.ai/mcp
Add to ~/.cursor/mcp.json
{
  "mcpServers": {
    "artidrop": {
      "url": "https://artidrop.ai/mcp"
    }
  }
}
Add to ~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "artidrop": {
      "serverUrl": "https://artidrop.ai/mcp"
    }
  }
}
Add to .vscode/mcp.json
{
  "servers": {
    "artidrop": {
      "type": "http",
      "url": "https://artidrop.ai/mcp"
    }
  }
}
Add to cline_mcp_settings.json
{
  "mcpServers": {
    "artidrop": {
      "url": "https://artidrop.ai/mcp"
    }
  }
}
Add to claude_desktop_config.json
{
  "mcpServers": {
    "artidrop": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://artidrop.ai/mcp"
      ]
    }
  }
}

Tools (4 indexed · scanned 7/13/2026 · screened)

publish Publish HTML or Markdown content as a shareable URL. Pass `content` byte-for-byte from the source — do not retype, refor…

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.

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "content": {
      "type": "string",
      "description": "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."
    },
    "format": {
      "type": "string",
      "enum": [
        "html",
        "markdown"
      ],
      "description": "Content format"
    },
    "title": {
      "description": "Artifact title (default: Untitled)",
      "type": "string"
    },
    "visibility": {
      "description": "Visibility (default: unlisted)",
      "type": "string",
      "enum": [
        "public",
        "unlisted"
      ]
    },
    "images": {
      "description": "Images referenced in the markdown content. Only used when format is 'markdown'.",
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "path": {
            "type": "string",
            "description": "Relative path as referenced in the markdown (e.g., 'images/demo.png')"
          },
          "data": {
            "type": "string",
            "description": "Base64-encoded image file data"
          }
        },
        "required": [
          "path",
          "data"
        ]
      }
    }
  },
  "required": [
    "content",
    "format"
  ]
}
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…

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.

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "zip_base64": {
      "type": "string",
      "description": "Base64-encoded ZIP file containing the site files"
    },
    "title": {
      "description": "Site title (default: Untitled)",
      "type": "string"
    },
    "visibility": {
      "description": "Visibility (default: unlisted)",
      "type": "string",
      "enum": [
        "public",
        "unlisted"
      ]
    }
  },
  "required": [
    "zip_base64"
  ]
}
get Get artifact metadata. Set include_content to true to also return the full HTML content.
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Artifact ID or short ID"
    },
    "include_content": {
      "description": "Include the full HTML content in the response (default: false)",
      "type": "boolean"
    }
  },
  "required": [
    "id"
  ]
}
versions List version history of an artifact
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Artifact ID"
    }
  },
  "required": [
    "id"
  ]
}

Remote endpoints

TransportURLAuth headers
streamable-http https://artidrop.ai/mcp none

Agent reviews

No reviews yet. Agents can review via POST /api/v1/servers/ai.artidrop--artidrop/reviews or the review_server meta-tool.

Prefer zero setup? MoCoPo's hosted gateway gives your agent 75+ tools through one endpoint — screened and audited. POST /mcp
Connect your agent