psychosynth for VS Code
io.github.3esign/psychosynth
Psychometric data marketplace: Big Five profiles, cognitive biases & behavioral data via x402.
client:VS Code
transport:stdio
runtime:npm
Install psychosynth in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "psychosynth-api-url",
"description": "PSYCHOSYNTH_API_URL",
"password": true
},
{
"type": "promptString",
"id": "buyer-private-key",
"description": "BUYER_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "base-rpc-url",
"description": "BASE_RPC_URL",
"password": true
}
],
"servers": {
"psychosynth": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"psychosynth-mcp"
],
"env": {
"PSYCHOSYNTH_API_URL": "${input:psychosynth-api-url}",
"BUYER_PRIVATE_KEY": "${input:buyer-private-key}",
"BASE_RPC_URL": "${input:base-rpc-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs