Fathom for VS Code
io.github.mindstone/mcp-server-fathom
Fathom AI meeting transcription MCP server for Model Context Protocol hosts
client:VS Code
transport:stdio
runtime:npm
Install Fathom in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fathom-api-key",
"description": "FATHOM_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "mcp-host-bridge-state",
"description": "MCP_HOST_BRIDGE_STATE",
"password": true
},
{
"type": "promptString",
"id": "mindstone-rebel-bridge-state",
"description": "MINDSTONE_REBEL_BRIDGE_STATE",
"password": true
}
],
"servers": {
"mcp-server-fathom": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mindstone/mcp-server-fathom"
],
"env": {
"FATHOM_API_KEY": "${input:fathom-api-key}",
"MCP_HOST_BRIDGE_STATE": "${input:mcp-host-bridge-state}",
"MINDSTONE_REBEL_BRIDGE_STATE": "${input:mindstone-rebel-bridge-state}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs