eonik for VS Code
ai.eonik/mcp
Read brand, research, and performance facts; draft briefs. Never spends. You approve every cut.
client:VS Code
transport:stdio
runtime:npm
Install eonik in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "eonik-api-key",
"description": "EONIK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "eonik-api-url",
"description": "EONIK_API_URL",
"password": true
},
{
"type": "promptString",
"id": "eonik-brand-id",
"description": "EONIK_BRAND_ID",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"eonik-mcp"
],
"env": {
"EONIK_API_KEY": "${input:eonik-api-key}",
"EONIK_API_URL": "${input:eonik-api-url}",
"EONIK_BRAND_ID": "${input:eonik-brand-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs