[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-05430817-f3a8-4e02-854f-ebf13c02cd0f":3,"$fbSUB8CpdiBF-FP_ADRpK2BEV_vHC5IDShP5IhMvWQVU":43},{"id":4,"title":5,"description":6,"categoryId":7,"moduleId":8,"tags":9,"prompt":10,"icon":11,"source":12,"sourceUrl":13,"authorId":14,"authorName":15,"isPublic":16,"stars":17,"runs":18,"createdAt":19,"updatedAt":19,"module":20,"category":27,"packages":34},"05430817-f3a8-4e02-854f-ebf13c02cd0f","convertkit-automation","通过Rube MCP（Composio）自动化ConvertKit（Kit）任务：管理订阅者、标签、广播和广播统计。始终首先搜索工具以获取当前架构。","cat_prod_automation","mod_productivity","sickn33,productivity","---\nname: convertkit-automation\ndescription: \"Automate ConvertKit (Kit) tasks via Rube MCP (Composio): manage subscribers, tags, broadcasts, and broadcast stats. Always search tools first for current schemas.\"\nrisk: critical\nsource: community\ndate_added: \"2026-02-27\"\n---\n\n# ConvertKit (Kit) Automation via Rube MCP\n\nAutomate ConvertKit (now known as Kit) email marketing operations through Composio's Kit toolkit via Rube MCP.\n\n## Prerequisites\n\n- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)\n- Active Kit connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `kit`\n- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas\n\n## Setup\n\n**Get Rube MCP**: Add `https:\u002F\u002Frube.app\u002Fmcp` as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.\n\n\n1. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds\n2. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `kit`\n3. If connection is not ACTIVE, follow the returned auth link to complete Kit authentication\n4. Confirm connection status shows ACTIVE before running any workflows\n\n## Core Workflows\n\n### 1. List and Search Subscribers\n\n**When to use**: User wants to browse, search, or filter email subscribers\n\n**Tool sequence**:\n1. `KIT_LIST_SUBSCRIBERS` - List subscribers with filters and pagination [Required]\n\n**Key parameters**:\n- `status`: Filter by status ('active' or 'inactive')\n- `email_address`: Exact email to search for\n- `created_after`\u002F`created_before`: Date range filter (YYYY-MM-DD)\n- `updated_after`\u002F`updated_before`: Date range filter (YYYY-MM-DD)\n- `sort_field`: Sort by 'id', 'cancelled_at', or 'updated_at'\n- `sort_order`: 'asc' or 'desc'\n- `per_page`: Results per page (min 1)\n- `after`\u002F`before`: Cursor strings for pagination\n- `include_total_count`: Set to 'true' to get total subscriber count\n\n**Pitfalls**:\n- If `sort_field` is 'cancelled_at', the `status` must be set to 'cancelled'\n- Date filters use YYYY-MM-DD format (no time component)\n- `email_address` is an exact match; partial email search is not supported\n- Pagination uses cursor-based approach with `after`\u002F`before` cursor strings\n- `include_total_count` is a string 'true', not a boolean\n\n### 2. Manage Subscriber Tags\n\n**When to use**: User wants to tag subscribers for segmentation\n\n**Tool sequence**:\n1. `KIT_LIST_SUBSCRIBERS` - Find subscriber ID by email [Prerequisite]\n2. `KIT_TAG_SUBSCRIBER` - Associate a subscriber with a tag [Required]\n3. `KIT_LIST_TAG_SUBSCRIBERS` - List subscribers for a specific tag [Optional]\n\n**Key parameters for tagging**:\n- `tag_id`: Numeric tag ID (required)\n- `subscriber_id`: Numeric subscriber ID (required)\n\n**Pitfalls**:\n- Both `tag_id` and `subscriber_id` must be positive integers\n- Tag IDs must reference existing tags; tags are created via the Kit web UI\n- Tagging an already-tagged subscriber is idempotent (no error)\n- Subscriber IDs are returned from LIST_SUBSCRIBERS; use `email_address` filter to find specific subscribers\n\n### 3. Unsubscribe a Subscriber\n\n**When to use**: User wants to unsubscribe a subscriber from all communications\n\n**Tool sequence**:\n1. `KIT_LIST_SUBSCRIBERS` - Find subscriber ID [Prerequisite]\n2. `KIT_DELETE_SUBSCRIBER` - Unsubscribe the subscriber [Required]\n\n**Key parameters**:\n- `id`: Subscriber ID (required, positive integer)\n\n**Pitfalls**:\n- This permanently unsubscribes the subscriber from ALL email communications\n- The subscriber's historical data is retained but they will no longer receive emails\n- Operation is idempotent; unsubscribing an already-unsubscribed subscriber succeeds without error\n- Returns empty response (HTTP 204 No Content) on success\n- Subscriber ID must exist; non-existent IDs return 404\n\n### 4. List and View Broadcasts\n\n**When to use**: User wants to browse email broadcasts or get details of a specific one\n\n**Tool sequence**:\n1. `KIT_LIST_BROADCASTS` - List all broadcasts with pagination [Required]\n2. `KIT_GET_BROADCAST` - Get detailed information for a specific broadcast [Optional]\n3. `KIT_GET_BROADCAST_STATS` - Get performance statistics for a broadcast [Optional]\n\n**Key parameters for listing**:\n- `per_page`: Results per page (1-500)\n- `after`\u002F`before`: Cursor strings for pagination\n- `include_total_count`: Set to 'true' for total count\n\n**Key parameters for details**:\n- `id`: Broadcast ID (required, positive integer)\n\n**Pitfalls**:\n- `per_page` max is 500 for broadcasts\n- Broadcast stats are only available for sent broadcasts\n- Draft broadcasts will not have stats\n- Broadcast IDs are numeric integers\n\n### 5. Delete a Broadcast\n\n**When to use**: User wants to permanently remove a broadcast\n\n**Tool sequence**:\n1. `KIT_LIST_BROADCASTS` - Find the broadcast to delete [Prerequisite]\n2. `KIT_GET_BROADCAST` - Verify it is the correct broadcast [Optional]\n3. `KIT_DELETE_BROADCAST` - Permanently delete the broadcast [Required]\n\n**Key parameters**:\n- `id`: Broadcast ID (required)\n\n**Pitfalls**:\n- Deletion is permanent and cannot be undone\n- Deleting a sent broadcast removes it but does not unsend the emails\n- Confirm the broadcast ID before deleting\n\n## Common Patterns\n\n### Subscriber Lookup by Email\n\n```\n1. Call KIT_LIST_SUBSCRIBERS with email_address='user@example.com'\n2. Extract subscriber ID from the response\n3. Use ID for tagging, unsubscribing, or other operations\n```\n\n### Pagination\n\nKit uses cursor-based pagination:\n- Check response for `after` cursor value\n- Pass cursor as `after` parameter in next request\n- Continue until no more cursor is returned\n- Use `include_total_count: 'true'` to track progress\n\n### Tag-Based Segmentation\n\n```\n1. Create tags in Kit web UI\n2. Use KIT_TAG_SUBSCRIBER to assign tags to subscribers\n3. Use KIT_LIST_TAG_SUBSCRIBERS to view subscribers per tag\n```\n\n## Known Pitfalls\n\n**ID Formats**:\n- Subscriber IDs: positive integers (e.g., 3887204736)\n- Tag IDs: positive integers\n- Broadcast IDs: positive integers\n- All IDs are numeric, not strings\n\n**Status Values**:\n- Subscriber statuses: 'active', 'inactive', 'cancelled'\n- Some operations are restricted by status (e.g., sorting by cancelled_at requires status='cancelled')\n\n**String vs Boolean Parameters**:\n- `include_total_count` is a string 'true', not a boolean true\n- `sort_order` is a string enum: 'asc' or 'desc'\n\n**Rate Limits**:\n- Kit API has per-account rate limits\n- Implement backoff on 429 responses\n- Bulk operations should be paced appropriately\n\n**Response Parsing**:\n- Response data may be nested under `data` or `data.data`\n- Parse defensively with fallback patterns\n- Cursor values are opaque strings; use exactly as returned\n\n## Quick Reference\n\n| Task | Tool Slug | Key Params |\n|------|-----------|------------|\n| List subscribers | KIT_LIST_SUBSCRIBERS | status, email_address, per_page |\n| Tag subscriber | KIT_TAG_SUBSCRIBER | tag_id, subscriber_id |\n| List tag subscribers | KIT_LIST_TAG_SUBSCRIBERS | tag_id |\n| Unsubscribe | KIT_DELETE_SUBSCRIBER | id |\n| List broadcasts | KIT_LIST_BROADCASTS | per_page, after |\n| Get broadcast | KIT_GET_BROADCAST | id |\n| Get broadcast stats | KIT_GET_BROADCAST_STATS | id |\n| Delete broadcast | KIT_DELETE_BROADCAST | id |\n\n## When to Use\nThis skill is applicable to execute the workflow or actions described in the overview.\n\n## Limitations\n- Use this skill only when the task clearly matches the scope described above.\n- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.\n- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.\n","","imported","https:\u002F\u002Fgithub.com\u002Fsickn33\u002Fantigravity-awesome-skills","user_system_seed","SkillOPIC",true,238,952,"2026-05-16 13:13:16",{"id":8,"name":21,"slug":22,"icon":23,"description":24,"sort":25,"createdAt":26},"效率工具","productivity","mdi-lightning-bolt-outline","文档处理、数据分析、自动化工作流",4,"2026-05-16 12:53:40",{"id":7,"name":28,"slug":29,"icon":30,"description":31,"moduleId":8,"sort":32,"skillCount":33,"createdAt":26},"自动化","automation","mdi-robot-outline","工作流自动化、批处理",3,101,[35],{"id":36,"skillId":4,"version":37,"fileName":38,"fileSize":39,"filePath":40,"fileHash":41,"manifest":42,"createdAt":19},"203b350b-45e7-405b-a07b-eab4b52ec688","1.0.0","convertkit-automation.zip",2944,"uploads\u002Fskills\u002F05430817-f3a8-4e02-854f-ebf13c02cd0f\u002Fconvertkit-automation.zip","9f2f3c1b1449596c7a3160ae33bf974feaf8036f2a5c1180bec31d816e569541","[{\"path\":\"SKILL.md\",\"isDirectory\":false,\"size\":7560}]",{"code":44,"message":45,"data":46},200,"success",{"items":47,"stats":48,"page":51},[],{"averageRating":49,"totalRatings":49,"ratingCounts":50},0,[49,49,49,49,49],{"limit":52,"offset":49,"hasMore":53,"nextOffset":52,"ratedOnly":16},15,false]