No install? Use cloud.anythingmcp.com directly.
Sign in, install the Kit (ConvertKit) in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → Kit (ConvertKit), pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin
git clone, sin servidor local.
Kit (ConvertKit)
Drive Kit (formerly ConvertKit) — creator-focused email marketing — from any AI agent: subscribers, tags, forms, sequences, broadcasts, custom fields. 14 tools, v4 API with API-key Bearer auth.
Configuración
convertkit.com under v4).
Setup:
- Sign in to https://app.kit.com → Advanced Settings → API → Show v4 API key.
- Copy the v4 API key. Set
CONVERTKIT_API_KEY. - (Optional, only for older v3 endpoints not used here): the v3 API uses an
api_secret— not needed for this connector.
Authentication: Authorization: Bearer ${CONVERTKIT_API_KEY}. The adapter handles this via BEARER_TOKEN.
Subscriber model: every email is a 'subscriber'. State machine: active, inactive (manually paused), bounced, complained, cancelled. New subscribers default to active. Adding to a sequence does NOT create an active subscriber automatically — they must be active first.
…(continued in the in-app connector instructions)
Requisitos previos: CONVERTKIT_API_KEY
Instalar el conector localmente
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Abre http://localhost:3000/connectors/store, elige Kit (ConvertKit) e introduce las variables listadas en los Requisitos previos.
Herramientas disponibles
| Tool | What it does |
|---|---|
convertkit_get_account | Return account info (name, plan, primary_email_address, created_at) |
convertkit_list_subscribers | List subscribers with filters |
convertkit_get_subscriber | Fetch a subscriber by ID with full fields object and tags[] |
convertkit_create_subscriber | Create a subscriber |
convertkit_update_subscriber | Update a subscriber's email, first_name, or custom fields |
convertkit_unsubscribe | Mark a subscriber as inactive (Kit's unsubscribe) |
convertkit_list_tags | List all tags |
convertkit_create_tag | Create a tag |
convertkit_tag_subscriber | Apply a tag to a subscriber |
convertkit_remove_tag_from_subscriber | Remove a tag from a subscriber |
convertkit_list_forms | List signup forms / landing pages |
convertkit_list_sequences | List sequences (drip email courses) |
convertkit_add_subscriber_to_sequence | Enroll a subscriber in a sequence |
convertkit_list_broadcasts | List broadcasts (one-off email sends) |