mnki mcp for VS Code
io.github.mnkiagentos/mnki-mcp
MCP proxy that checks every tools/call against Agent Trust policy, with evidence, before it runs.
client:VS Code
transport:stdio
runtime:npm
Install mnki mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mnki-api-key",
"description": "MNKI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "mnki-url",
"description": "MNKI_URL",
"password": true
}
],
"servers": {
"mnki-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mnki-mcp"
],
"env": {
"MNKI_API_KEY": "${input:mnki-api-key}",
"MNKI_URL": "${input:mnki-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs