eventsorg mcp for VS Code
io.github.guth01/eventsorg-mcp
Autonomous MCP server and background agent for managing live event logistics.
client:VS Code
transport:stdio
runtime:npm
Install eventsorg mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "google-api-key",
"description": "GOOGLE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "twilio-account-sid",
"description": "TWILIO_ACCOUNT_SID",
"password": true
},
{
"type": "promptString",
"id": "twilio-auth-token",
"description": "TWILIO_AUTH_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "twilio-phone-number",
"description": "TWILIO_PHONE_NUMBER",
"password": true
}
],
"servers": {
"eventsorg-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"eventsorg-mcp"
],
"env": {
"GOOGLE_API_KEY": "${input:google-api-key}",
"TWILIO_ACCOUNT_SID": "${input:twilio-account-sid}",
"TWILIO_AUTH_TOKEN": "${input:twilio-auth-token}",
"TWILIO_PHONE_NUMBER": "${input:twilio-phone-number}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs