Hicortex — AI Fleet Memory for VS Code
io.github.gamaze-labs/hicortex
Shared fleet memory for AI agents: nightly self-correction, recall every prompt (supported agents).
client:VS Code
transport:stdio
runtime:npm
Install Hicortex — AI Fleet Memory in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hicortex-auth-token",
"description": "HICORTEX_AUTH_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "hicortex-server-url",
"description": "HICORTEX_SERVER_URL",
"password": true
}
],
"servers": {
"hicortex": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@gamaze/hicortex"
],
"env": {
"HICORTEX_AUTH_TOKEN": "${input:hicortex-auth-token}",
"HICORTEX_SERVER_URL": "${input:hicortex-server-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs