Kit.com MCP Server for VS Code
io.github.dancumberland/kit-mcp
Agent-optimized MCP server for Kit.com email marketing. 13 composite tools, 100% V4 API.
client:VS Code
transport:stdio
runtime:npm
Install Kit.com MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kit-api-key",
"description": "KIT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "kit-oauth-token",
"description": "KIT_OAUTH_TOKEN",
"password": true
}
],
"servers": {
"kit-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@dancumberland/kit-mcp"
],
"env": {
"KIT_API_KEY": "${input:kit-api-key}",
"KIT_OAUTH_TOKEN": "${input:kit-oauth-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs