CPersona for VS Code
io.github.cloto-dev/cpersona
Persistent AI memory in one SQLite file: 3-layer hybrid search, confidence scoring, 29 tools.
client:VS Code
transport:stdio
runtime:pypi
Install CPersona in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cpersona-db-path",
"description": "CPERSONA_DB_PATH",
"password": true
},
{
"type": "promptString",
"id": "cpersona-embedding-mode",
"description": "CPERSONA_EMBEDDING_MODE",
"password": true
},
{
"type": "promptString",
"id": "cpersona-embedding-url",
"description": "CPERSONA_EMBEDDING_URL",
"password": true
},
{
"type": "promptString",
"id": "cpersona-recall-mode",
"description": "CPERSONA_RECALL_MODE",
"password": true
}
],
"servers": {
"cpersona": {
"type": "stdio",
"command": "uvx",
"args": [
"cpersona"
],
"env": {
"CPERSONA_DB_PATH": "${input:cpersona-db-path}",
"CPERSONA_EMBEDDING_MODE": "${input:cpersona-embedding-mode}",
"CPERSONA_EMBEDDING_URL": "${input:cpersona-embedding-url}",
"CPERSONA_RECALL_MODE": "${input:cpersona-recall-mode}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs