lucairn mcp server for VS Code
io.github.declade/lucairn-mcp-server
Pseudonymizes PII before your LLM and returns a cryptographically signed receipt per response.
client:VS Code
transport:stdio
runtime:npm
Install lucairn mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "lucairn-api-key",
"description": "LUCAIRN_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "lucairn-base-url",
"description": "LUCAIRN_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "lucairn-transport",
"description": "LUCAIRN_TRANSPORT",
"password": true
}
],
"servers": {
"lucairn-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@lucairn/mcp-server"
],
"env": {
"LUCAIRN_API_KEY": "${input:lucairn-api-key}",
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
"OPENAI_API_KEY": "${input:openai-api-key}",
"LUCAIRN_BASE_URL": "${input:lucairn-base-url}",
"LUCAIRN_TRANSPORT": "${input:lucairn-transport}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs