trustmodel mcp for VS Code
io.github.karlmehta/trustmodel-mcp
Score any AI for trust across 10 dimensions; evaluate, monitor & govern LLMs and agents.
client:VS Code
transport:stdio
runtime:npm
Install trustmodel mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "trustmodel-api-key",
"description": "TRUSTMODEL_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "trustmodel-base-url",
"description": "TRUSTMODEL_BASE_URL",
"password": true
}
],
"servers": {
"trustmodel-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@trustmodel/mcp-server"
],
"env": {
"TRUSTMODEL_API_KEY": "${input:trustmodel-api-key}",
"TRUSTMODEL_BASE_URL": "${input:trustmodel-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs