launchpad-mcp
v0.1.0
Published
MCP server for Launchpad landing page builder
Maintainers
Readme
launchpad-mcp
MCP server for the Launchpad landing page builder. Connect your AI assistant to create, edit, and publish pages with natural language.
Install
npx launchpad-mcpOr install globally:
npm install -g launchpad-mcpEnvironment variables
| Variable | Required | Description |
|---|---|---|
| LAUNCHPAD_API_KEY | Yes | Your API key from Settings → API Keys |
| LAUNCHPAD_API_URL | Yes | Your Launchpad site URL (e.g. https://your-site.launchpad.com) |
| LAUNCHPAD_ADMIN_TOKEN | No | Enables admin-only tools (user management, billing, etc.) |
Setup
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"launchpad": {
"command": "npx",
"args": ["-y", "launchpad-mcp"],
"env": {
"LAUNCHPAD_API_KEY": "lp_live_your_api_key",
"LAUNCHPAD_API_URL": "https://your-site.launchpad.com"
}
}
}
}Claude Code (terminal)
Add to your project's .mcp.json:
{
"mcpServers": {
"launchpad": {
"command": "npx",
"args": ["-y", "launchpad-mcp"],
"env": {
"LAUNCHPAD_API_KEY": "lp_live_your_api_key",
"LAUNCHPAD_API_URL": "https://your-site.launchpad.com"
}
}
}
}Cursor
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"launchpad": {
"command": "npx",
"args": ["-y", "launchpad-mcp"],
"env": {
"LAUNCHPAD_API_KEY": "lp_live_your_api_key",
"LAUNCHPAD_API_URL": "https://your-site.launchpad.com"
}
}
}
}Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"launchpad": {
"command": "npx",
"args": ["-y", "launchpad-mcp"],
"env": {
"LAUNCHPAD_API_KEY": "lp_live_your_api_key",
"LAUNCHPAD_API_URL": "https://your-site.launchpad.com"
}
}
}
}VS Code (GitHub Copilot)
Add to .vscode/mcp.json in your project root:
{
"servers": {
"launchpad": {
"command": "npx",
"args": ["-y", "launchpad-mcp"],
"env": {
"LAUNCHPAD_API_KEY": "lp_live_your_api_key",
"LAUNCHPAD_API_URL": "https://your-site.launchpad.com"
}
}
}
}Codex CLI (OpenAI)
Add to ~/.codex/config.json:
{
"mcpServers": {
"launchpad": {
"command": "npx",
"args": ["-y", "launchpad-mcp"],
"env": {
"LAUNCHPAD_API_KEY": "lp_live_your_api_key",
"LAUNCHPAD_API_URL": "https://your-site.launchpad.com"
}
}
}
}Available tools
The server exposes 18 tools for complete site management:
list_pages,get_page,create_page,update_page,publish_page,archive_pagelist_blocks,add_block,update_block,reorder_blocks,remove_blockgenerate_page,refine_blockupload_filelist_templates,get_templatelist_webhook_subscriptions,create_webhook_subscription
