eulerian marketing platform mcp for VS Code
io.github.matjmat/eulerian-marketing-platform-mcp
Provides access to the Eulerian Marketing Platform: analytics, attribution & data activation.
client:VS Code
transport:stdio
runtime:pypi
Install eulerian marketing platform mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "emp-api-token",
"description": "EMP_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "emp-api-endpoint",
"description": "EMP_API_ENDPOINT",
"password": true
}
],
"servers": {
"eulerian-marketing-platform-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"eulerian-marketing-platform"
],
"env": {
"EMP_API_TOKEN": "${input:emp-api-token}",
"EMP_API_ENDPOINT": "${input:emp-api-endpoint}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs