@launchthatbot/mcp
v0.3.0
Published
LaunchThatBot MCP server for Cursor IDE — manage deployments, agents, and infrastructure from your editor
Maintainers
Readme
@launchthatbot/mcp-server
MCP (Model Context Protocol) server for LaunchThatBot — manage your OpenClaw agent deployments, infrastructure, and credentials directly from Cursor IDE.
Quick Start
1. Get an API Key
Go to LaunchThatBot Dashboard → Settings → API Keys and create a new key.
2. Add to Cursor
Add this to your .cursor/mcp.json:
{
"mcpServers": {
"launchthatbot": {
"command": "npx",
"args": ["-y", "@launchthatbot/mcp-server"],
"env": {
"LAUNCHTHATBOT_API_KEY": "ltb_sk_..."
}
}
}
}3. Use It
Once configured, you can ask Cursor things like:
- "List my LaunchThatBot servers"
- "Show me the status of my agents"
- "Create a new deployment on Hetzner"
- "What's my dashboard overview?"
Available Tools
Servers
list_servers— List all VPS servers with status and regionget_server— Get details for a specific serverset_server_attachment— Attach or detach a server
Deployments
list_deployments— List deployments for a serverget_deployment— Get deployment detailscreate_deployment— Provision a new VPS with OpenClawredeploy— Reinstall OpenClaw on a serverget_job_status— Check provisioning job progress
Agents
list_agents— List all agent configurationsget_agent— Get agent detailscreate_agent— Create a new agent configupdate_agent— Update an agent configdelete_agent— Delete an agent configdiscover_agents— Find unregistered agents on a serversync_agent— Push agent config to its server
Health & Events
get_agent_health— Check OpenClaw instance healthget_agent_events— Get recent instance events
Dashboard
get_overview— Server count, agent count, health breakdownlist_convex_connections— List Convex cloud connectionslist_discord_connections— List Discord bot connections
Audit
list_audit_events— Get server audit trail
Credentials
list_credentials— List VPS provider credentials (masked)add_credential— Add a new provider API token
Import
import_handshake— Validate one-time import token and fetch RSA public keyimport_push— Push exported config and encrypted secrets payload
Environment Variables
| Variable | Required | Description |
|---|---|---|
| LAUNCHTHATBOT_API_KEY | Yes | Your API key (starts with ltb_sk_) |
| LAUNCHTHATBOT_API_URL | No | Override the API endpoint (for development) |
