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 キーを発行 — 完了です。Docker も
git cloneもローカルサーバーも不要。
Kit (ConvertKit) + ChatGPT
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_API_KEY
ステップ 1 — 認証情報を取得
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)
ステップ 2 — アダプターをインストール
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
ステップ 3 — ChatGPT にコネクタを追加
ChatGPT は Connectors 機能 (Plus / Pro / Team / Enterprise プラン) で MCP サーバーをサポートします。無料プランはカスタムコネクタをサポートしません。
- ChatGPT → Settings → Connectors を開きます (またはコンポーザーの 🔧 アイコン → Manage connectors をクリック)。
- "Add custom connector" をクリック。
- 入力:
- Name:
Kit (ConvertKit) - MCP server URL:
https://cloud.anythingmcp.com/mcp - Authentication: Bearer token → MCP API キーを貼り付け
- Name:
- Connect をクリック。
利用可能なツール
| 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) |
FAQ
ChatGPT 無料プランはカスタム MCP Connectors で動作しますか? いいえ — Plus、Pro、Team、Enterprise が必要です。