Amazing Marvin (complete) for VS Code
io.github.andreasd083/amazing-marvin-complete-mcp
Amazing Marvin task manager: complete public-API coverage (38 tools) with built-in rate limiting
client:VS Code
transport:stdio
runtime:pypi
Install Amazing Marvin (complete) in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "marvin-api-token",
"description": "MARVIN_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "marvin-full-access-token",
"description": "MARVIN_FULL_ACCESS_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "marvin-timezone",
"description": "MARVIN_TIMEZONE",
"password": true
}
],
"servers": {
"amazing-marvin-complete-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"amazing-marvin-complete-mcp"
],
"env": {
"MARVIN_API_TOKEN": "${input:marvin-api-token}",
"MARVIN_FULL_ACCESS_TOKEN": "${input:marvin-full-access-token}",
"MARVIN_TIMEZONE": "${input:marvin-timezone}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs