mcp-context-card for VS Code
io.github.wolfe-jam/mcp-context-card
MCP server for a project's context (AGENTS.md), memory, and identity — base or drop-in extension.
client:VS Code
transport:stdio
runtime:npm
Install mcp-context-card in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mcp-context-card-root",
"description": "MCP_CONTEXT_CARD_ROOT",
"password": true
}
],
"servers": {
"mcp-context-card": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-context-card"
],
"env": {
"MCP_CONTEXT_CARD_ROOT": "${input:mcp-context-card-root}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs