tctc mcp for VS Code
io.github.kofujimura/tctc-mcp
ERC-7303 token-controlled roles for AI agents: grant, check, and revoke permissions on-chain
client:VS Code
transport:stdio
runtime:npm
Install tctc mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "tctc-admin-private-key",
"description": "TCTC_ADMIN_PRIVATE_KEY",
"password": true
}
],
"servers": {
"tctc-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"tctc-mcp"
],
"env": {
"TCTC_ADMIN_PRIVATE_KEY": "${input:tctc-admin-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