sendpulse mcp for VS Code
io.github.theyahia/sendpulse-mcp
MCP server for SendPulse API — mailing lists, email sending, statistics. OAuth2 auth.
client:VS Code
transport:stdio
runtime:npm
Install sendpulse mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sendpulse-id",
"description": "SENDPULSE_ID",
"password": true
}
],
"servers": {
"sendpulse-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@theyahia/sendpulse-mcp"
],
"env": {
"SENDPULSE_ID": "${input:sendpulse-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs