Apple Messages for VS Code
io.github.jonathanrreed/apple-messages-mcp
Read Messages history on macOS and send or reply through Messages.app.
client:VS Code
transport:stdio
runtime:pypi
Install Apple Messages in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "apple-messages-mcp-safety-mode",
"description": "APPLE_MESSAGES_MCP_SAFETY_MODE",
"password": true
}
],
"servers": {
"apple-messages-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"apple-messages-mcp"
],
"env": {
"APPLE_MESSAGES_MCP_SAFETY_MODE": "${input:apple-messages-mcp-safety-mode}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs