lithtrix for VS Code
io.github.lithtrix/lithtrix
Identity, memory, trust, and swarm MCP tools for AI agents. Free MIRC + free floors at lithtrix.ai.
client:VS Code
transport:stdio
runtime:npm
Install lithtrix in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "lithtrix-api-key",
"description": "LITHTRIX_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "lithtrix-passport-master-seed",
"description": "LITHTRIX_PASSPORT_MASTER_SEED",
"password": true
},
{
"type": "promptString",
"id": "lithtrix-passport-private-key",
"description": "LITHTRIX_PASSPORT_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "lithtrix-api-url",
"description": "LITHTRIX_API_URL",
"password": true
}
],
"servers": {
"lithtrix": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"lithtrix-mcp"
],
"env": {
"LITHTRIX_API_KEY": "${input:lithtrix-api-key}",
"LITHTRIX_PASSPORT_MASTER_SEED": "${input:lithtrix-passport-master-seed}",
"LITHTRIX_PASSPORT_PRIVATE_KEY": "${input:lithtrix-passport-private-key}",
"LITHTRIX_API_URL": "${input:lithtrix-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs