@vibedrop/mcp
v0.2.0
Published
MCP server for deploying static sites to VibeDrop.
Maintainers
Readme
@vibedrop/mcp
MCP server for deploying static sites to VibeDrop. Works with Claude Code, Cursor, Windsurf, and any MCP-compatible client.
Quick Setup
Claude Code
claude mcp add vibedrop -- npx @vibedrop/mcpCursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"vibedrop": {
"command": "npx",
"args": ["@vibedrop/mcp"]
}
}
}Windsurf / Other MCP clients
{
"command": "npx",
"args": ["@vibedrop/mcp"]
}Tools
deploy_site
Deploy a directory as a static website.
directory(required): Absolute path to the directory containing index.htmlslug(optional): Custom subdomain (Pro feature)title(optional): Site title
Returns a public URL like https://abc123.vibedrop.site.
list_sites
List all deployed sites.
delete_site
Delete a deployed site by slug.
How it works
- First call auto-provisions an anonymous API key (stored in
~/.vibedrop/config.json) - Zips the directory, uploads to VibeDrop API
- Returns a live URL anyone can visit
- Free tier: 72h TTL, 5MB max, 3 sites, ad banner
- Pro: permanent, 50MB, unlimited, no ads
Environment Variables
VIBEDROP_API_URL: Override API endpoint (default:https://api.vibedrop.cc)
