Apple Reminders for VS Code
io.github.mgcrea/mcp-apple-reminders
Search, read and act on Apple Reminders — lists, due dates, writes off by default
client:VS Code
transport:stdio
runtime:npm
Install Apple Reminders in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "apple-reminders-allow-writes",
"description": "APPLE_REMINDERS_ALLOW_WRITES",
"password": true
},
{
"type": "promptString",
"id": "apple-reminders-lists",
"description": "APPLE_REMINDERS_LISTS",
"password": true
}
],
"servers": {
"mcp-apple-reminders": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mgcrea/mcp-apple-reminders"
],
"env": {
"APPLE_REMINDERS_ALLOW_WRITES": "${input:apple-reminders-allow-writes}",
"APPLE_REMINDERS_LISTS": "${input:apple-reminders-lists}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs