ChatCrystal for VS Code
io.github.zengliangyi/chatcrystal
Local-first AI PKM memory for coding conversations.
client:VS Code
transport:stdio
runtime:npm
Install ChatCrystal in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "chatcrystal-base-url",
"description": "CHATCRYSTAL_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "chatcrystal-api-token",
"description": "CHATCRYSTAL_API_TOKEN",
"password": true
}
],
"servers": {
"chatcrystal": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"chatcrystal"
],
"env": {
"CHATCRYSTAL_BASE_URL": "${input:chatcrystal-base-url}",
"CHATCRYSTAL_API_TOKEN": "${input:chatcrystal-api-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs