mcp for VS Code
com.heyoden/mcp
Talk to your Oden AI todo and calendar account from Claude Code, Cursor, or any MCP client.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "oden-api-key",
"description": "ODEN_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "oden-api-url",
"description": "ODEN_API_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@heyoden/mcp"
],
"env": {
"ODEN_API_KEY": "${input:oden-api-key}",
"ODEN_API_URL": "${input:oden-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs