Apple Reminders for VS Code
io.github.jonathanrreed/apple-mcp-reminders
List, create, update, complete, and delete reminders in Apple Reminders on macOS.
client:VS Code
transport:stdio
runtime:pypi
Install Apple Reminders in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "apple-reminders-mcp-safety-mode",
"description": "APPLE_REMINDERS_MCP_SAFETY_MODE",
"password": true
},
{
"type": "promptString",
"id": "apple-reminders-mcp-allowed-lists",
"description": "APPLE_REMINDERS_MCP_ALLOWED_LISTS",
"password": true
}
],
"servers": {
"apple-mcp-reminders": {
"type": "stdio",
"command": "uvx",
"args": [
"apple-mcp-reminders"
],
"env": {
"APPLE_REMINDERS_MCP_SAFETY_MODE": "${input:apple-reminders-mcp-safety-mode}",
"APPLE_REMINDERS_MCP_ALLOWED_LISTS": "${input:apple-reminders-mcp-allowed-lists}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs