mcp server for VS Code
io.github.publicaml/mcp-server
AML screening for crypto addresses: risk, sanctions, fund tracing and counterparties.
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "publicaml-api-key",
"description": "PUBLICAML_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "publicaml-api-base",
"description": "PUBLICAML_API_BASE",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@publicaml/mcp-server"
],
"env": {
"PUBLICAML_API_KEY": "${input:publicaml-api-key}",
"PUBLICAML_API_BASE": "${input:publicaml-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs