inam mcp for VS Code
io.github.inamprotocol/inam-mcp
Check an agent's INAM reputation before trusting it, and sign a receipt when work is done.
client:VS Code
transport:stdio
runtime:npm
Install inam mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "inam-url",
"description": "INAM_URL",
"password": true
},
{
"type": "promptString",
"id": "inam-private-key",
"description": "INAM_PRIVATE_KEY",
"password": true
}
],
"servers": {
"inam-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"inam-mcp"
],
"env": {
"INAM_URL": "${input:inam-url}",
"INAM_PRIVATE_KEY": "${input:inam-private-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs