InsAIts - AI Communication Security Monitor for VS Code
io.github.nomadu27/insaits
Runtime AI-to-AI security monitor. 23 anomaly types, OWASP MCP Top 10 coverage.
client:VS Code
transport:stdio
runtime:pypi
Install InsAIts - AI Communication Security Monitor in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "insaits-api-key",
"description": "INSAITS_API_KEY",
"password": true
}
],
"servers": {
"insaits": {
"type": "stdio",
"command": "uvx",
"args": [
"insa-its"
],
"env": {
"INSAITS_API_KEY": "${input:insaits-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs