marrow for VS Code
tech.skeletonarmy/marrow
Read-only MCP access to your own Apple Health data, mirrored from the Marrow iOS app.
client:VS Code
transport:stdio
runtime:pypi
Install marrow in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "marrow-data",
"description": "MARROW_DATA",
"password": true
}
],
"servers": {
"marrow": {
"type": "stdio",
"command": "uvx",
"args": [
"marrow-mcp"
],
"env": {
"MARROW_DATA": "${input:marrow-data}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs