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