io.github.aplaceforallmystuff/mcp-kit

平台与服务

by aplaceforallmystuff

面向Kit.com(ConvertKit)的MCP服务器,可管理订阅者、tags、sequences与broadcasts等营销资源。

什么是 io.github.aplaceforallmystuff/mcp-kit

面向Kit.com(ConvertKit)的MCP服务器,可管理订阅者、tags、sequences与broadcasts等营销资源。

README

MCP Kit Server

Architecture

<!-- <p align="center"> <img src="docs/mcp-kit-logo.png" alt="MCP Kit Server" width="400"> </p> -->

npm version CI License: MIT MCP Status: Deprecated

An MCP (Model Context Protocol) server that connects AI assistants like Claude to the Kit.com (formerly ConvertKit) email marketing platform. Manage your email lists, subscribers, broadcasts, sequences, and more through natural language.

[!WARNING] This project is deprecated and no longer maintained. Kit now ships official, first-party MCP servers that supersede it with broader API coverage and managed authentication. Please migrate — see below.

⚠️ Deprecated — use Kit's official MCP servers

This community server was built before Kit offered its own MCP. Kit now maintains official servers that cover far more of the Kit API v4 surface (including analytics, commerce, segments, and bulk operations), handle auth for you, and stay current with API changes. New and existing users should migrate.

Use caseOfficial serverURL
Act on your Kit account — subscribers, tags, sequences, broadcasts, analytics, commerce…Kit MCPhttps://app.kit.com/mcp
Give a coding agent live access to Kit's developer docs + APIKit Developer Docs MCPhttps://developers.kit.com/mcp

Migrate in Claude Code

bash
# Remove this deprecated server (if you added it as "kit")
claude mcp remove kit

# Add the official operational Kit MCP
claude mcp add --transport http kit https://app.kit.com/mcp

# Optional: add Kit's developer-docs MCP for building integrations
claude mcp add --transport http kit-docs https://developers.kit.com/mcp

Official setup guides (Claude Desktop, Cursor, Windsurf, Cline, and more): https://developers.kit.com/mcp/kit-developer-docs-mcp/mcp/overview


<details> <summary>📦 Legacy documentation (for historical reference)</summary>

Why Use This?

If you run a newsletter or email marketing on Kit.com, this MCP server lets you:

  • Manage subscribers - List, create, update, and organize your email subscribers
  • Handle tags efficiently - Create tags, add/remove tags from subscribers, list subscribers by tag
  • Work with sequences - View email sequences and add subscribers to automated sequences
  • Create broadcasts - Draft and manage email campaigns
  • Analyze your list - Query subscriber data with filters (status, date ranges, custom fields)
  • Automate workflows - Let Claude handle repetitive email marketing tasks

Features

CategoryTools
AccountGet account information
SubscribersList, get, create, update, manage tags
TagsList, create, update, delete, get subscribers by tag
SequencesList, get, add subscribers
BroadcastsList, get, create, update, delete
FormsList, get, add subscribers
Custom FieldsList available fields
WebhooksList, create, delete

Complete Tool Reference

Account

  • kit_get_account - Get Kit.com account information

Subscribers (7 tools)

  • kit_list_subscribers - List subscribers with filters (status, date ranges, pagination)
  • kit_get_subscriber - Get a specific subscriber by ID
  • kit_create_subscriber - Create a new subscriber
  • kit_update_subscriber - Update subscriber details
  • kit_get_subscriber_tags - Get all tags for a subscriber
  • kit_add_tag_to_subscriber - Add a tag to a subscriber
  • kit_remove_tag_from_subscriber - Remove a tag from a subscriber

Tags (6 tools)

  • kit_list_tags - List all tags
  • kit_get_tag - Get a specific tag
  • kit_create_tag - Create a new tag
  • kit_update_tag - Rename a tag
  • kit_delete_tag - Delete a tag
  • kit_list_tag_subscribers - List all subscribers with a specific tag

Sequences (3 tools)

  • kit_list_sequences - List all email sequences
  • kit_get_sequence - Get sequence details
  • kit_add_subscriber_to_sequence - Add subscriber to a sequence

Broadcasts (5 tools)

  • kit_list_broadcasts - List all broadcasts
  • kit_get_broadcast - Get broadcast details
  • kit_create_broadcast - Create a new broadcast
  • kit_update_broadcast - Update a broadcast
  • kit_delete_broadcast - Delete a broadcast

Forms (3 tools)

  • kit_list_forms - List all forms
  • kit_get_form - Get form details
  • kit_add_subscriber_to_form - Add subscriber via form

Custom Fields (1 tool)

  • kit_list_custom_fields - List all custom fields

Webhooks (3 tools)

  • kit_list_webhooks - List configured webhooks
  • kit_create_webhook - Create a new webhook
  • kit_delete_webhook - Delete a webhook

Prerequisites

  • Node.js 18+
  • A Kit.com account
  • Your Kit.com API key (v4 API)

Installation

Option 1: Install from npm (recommended)

bash
npx kit-mcp-server

Or install globally:

bash
npm install -g kit-mcp-server

Option 2: Clone and Build

bash
git clone https://github.com/aplaceforallmystuff/mcp-kit.git
cd mcp-kit
npm install
npm run build

Configuration

1. Get Your Kit.com API Key

  1. Log in to Kit.com
  2. Navigate to Settings > Developer
  3. Create a new API key or copy an existing v4 API key

2. Configure Your MCP Client

For Claude Desktop

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Windows: %APPDATA%\Claude\claude_desktop_config.json

json
{
  "mcpServers": {
    "kit": {
      "command": "node",
      "args": ["/path/to/mcp-kit/dist/index.js"],
      "env": {
        "KIT_API_KEY": "your-api-key-here"
      }
    }
  }
}

For Claude Code

bash
claude mcp add kit -e KIT_API_KEY=your-api-key-here -- node /path/to/mcp-kit/dist/index.js

Or add to ~/.claude.json:

json
{
  "mcpServers": {
    "kit": {
      "command": "node",
      "args": ["/path/to/mcp-kit/dist/index.js"],
      "env": {
        "KIT_API_KEY": "your-api-key-here"
      }
    }
  }
}

Usage Examples

Once configured, you can interact with Kit.com through natural language:

Subscriber Management

"Show me all active subscribers from the last 30 days"

"Create a new subscriber with email user@example.com and tag them as 'newsletter'"

"What tags does subscriber@example.com have?"

Tag Operations

"List all my tags and how many subscribers each has"

"Create a tag called 'VIP Customers'"

"Add the 'engaged' tag to all subscribers who signed up this month"

Email Sequences

"Show me all my email sequences"

"Add user@example.com to the welcome sequence"

Broadcasts

"Create a draft broadcast with subject 'Weekly Update' and preview text 'This week in AI...'"

"List all my recent broadcasts and their stats"

Forms

"Show me all active forms"

"Add a subscriber to my main signup form"

Development

bash
# Run in development mode (watches for changes)
npm run dev

# Build for production
npm run build

# Run the built version
npm start

Troubleshooting

"KIT_API_KEY environment variable is required"

Ensure you have set the KIT_API_KEY environment variable in your MCP configuration.

"Kit API error (401)"

Your API key is invalid or expired. Generate a new one from Kit.com Settings > Developer.

"Kit API error (403)"

Your API key doesn't have permission for this operation. Check that you're using a v4 API key with appropriate scopes.

"Kit API error (404)"

The resource (subscriber, tag, broadcast, etc.) was not found. Verify the ID is correct.

"Kit API error (422)"

Invalid request data. Check that email addresses are valid and required fields are provided.

API Reference

This server uses the Kit.com API v4. All tools support pagination where applicable using per_page and after cursor parameters.

Contributing

This project is deprecated and not accepting contributions. Please use Kit's official MCP servers instead.

License

MIT License - see LICENSE for details.

Links

</details>

常见问题

io.github.aplaceforallmystuff/mcp-kit 是什么?

面向Kit.com(ConvertKit)的MCP服务器,可管理订阅者、tags、sequences与broadcasts等营销资源。

相关 Skills

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描165.3k

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描165.3k

接口测试套件

by alirezarezvani

Universal
热门

扫描 Next.js、Express、FastAPI、Django REST 的 API 路由,自动生成覆盖鉴权、参数校验、错误码、分页、上传与限流场景的 Vitest 或 Pytest 测试套件。

帮你把API与集成测试自动化跑顺,减少回归漏测;能力全面,尤其适合复杂接口场景的QA团队。

平台与服务
未扫描23.5k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
89.1k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
79.9k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
71.9k

评论