Set up Siren MCP with VS Code for AI-powered development workflows
.vscode/mcp.json
{ "mcp": { "servers": { "siren": { "command": "npx", "args": [ "-y", "@trysiren/mcp", "--tools=messaging.send,templates.list,workflows.trigger", "--api-key=YOUR_SIREN_API_KEY" ] } } } }
{ "mcp.servers": { "siren": { "command": "npx", "args": [ "-y", "@trysiren/mcp", "--tools=all", "--api-key=YOUR_SIREN_API_KEY" ] } } }
keybindings.json
[ { "command": "mcp.executeTool", "key": "ctrl+alt+s", "args": { "server": "Siren", "tool": "messaging.send" } } ]
Was this page helpful?