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.
💡 无需安装? 直接使用 cloud.anythingmcp.com。 登录、点击 Connectors → Kit (ConvertKit)、粘贴凭证、生成 MCP API key — 完成。无 Docker、无
git clone、无本地服务器。
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.
设置
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)
前提条件: CONVERTKIT_API_KEY
本地安装连接器
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
打开 http://localhost:3000/connectors/store,选择 Kit (ConvertKit) 并填入前提条件中列出的环境变量。
可用工具
| 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) |