mcp server for VS Code
app.odyssey365/mcp-server
Odyssey 앱의 할일·메모·프로젝트·타임라인을 MCP 클라이언트에서 관리
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "odyssey-api-key",
"description": "ODYSSEY_API_KEY",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@odyssey365/mcp-server"
],
"env": {
"ODYSSEY_API_KEY": "${input:odyssey-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs