opensanctions mcp for VS Code
io.github.scka-de/opensanctions-mcp
Sanctions screening and PEP checks via OpenSanctions API for AI agents
client:VS Code
transport:stdio
runtime:npm
Install opensanctions mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "opensanctions-api-key",
"description": "OPENSANCTIONS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "opensanctions-api-url",
"description": "OPENSANCTIONS_API_URL",
"password": true
}
],
"servers": {
"opensanctions-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"opensanctions-mcp"
],
"env": {
"OPENSANCTIONS_API_KEY": "${input:opensanctions-api-key}",
"OPENSANCTIONS_API_URL": "${input:opensanctions-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs