psyche ai for VS Code
io.github.shangri-la-0428/psyche-ai
Emotional intelligence for AI agents: neurotransmitter mood, personality, empathy, trait drift.
client:VS Code
transport:stdio
runtime:npm
Install psyche ai in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "psyche-mbti",
"description": "PSYCHE_MBTI",
"password": true
},
{
"type": "promptString",
"id": "psyche-name",
"description": "PSYCHE_NAME",
"password": true
},
{
"type": "promptString",
"id": "psyche-mode",
"description": "PSYCHE_MODE",
"password": true
},
{
"type": "promptString",
"id": "psyche-locale",
"description": "PSYCHE_LOCALE",
"password": true
}
],
"servers": {
"psyche-ai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"psyche-ai"
],
"env": {
"PSYCHE_MBTI": "${input:psyche-mbti}",
"PSYCHE_NAME": "${input:psyche-name}",
"PSYCHE_MODE": "${input:psyche-mode}",
"PSYCHE_LOCALE": "${input:psyche-locale}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs