mcp-sanctions for VS Code
io.github.atomno-mcp/mcp-sanctions
Sanctions/watchlist screening (RF, OFAC, EU, UK, UN) with confidence levels for KYC/AML.
client:VS Code
transport:stdio
runtime:pypi
Install mcp-sanctions in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mcp-sanctions-api-key",
"description": "MCP_SANCTIONS_API_KEY",
"password": true
}
],
"servers": {
"mcp-sanctions": {
"type": "stdio",
"command": "uvx",
"args": [
"atomno-mcp-sanctions"
],
"env": {
"MCP_SANCTIONS_API_KEY": "${input:mcp-sanctions-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