Memo AI – meeting assistant for VS Code
tech.memoai/memo-ai
Search transcripts and summaries of your meetings, calls, and recordings in Memo AI
client:VS Code
transport:stdio
runtime:npm
Install Memo AI – meeting assistant in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "memo-api-key",
"description": "MEMO_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "memo-api-url",
"description": "MEMO_API_URL",
"password": true
}
],
"servers": {
"memo-ai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"memoai-mcp-server"
],
"env": {
"MEMO_API_KEY": "${input:memo-api-key}",
"MEMO_API_URL": "${input:memo-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs