miniframe tools for VS Code
io.github.edsonvmendes/miniframe-tools
Brazilian tools for agents: Pix codes, CEP, CNPJ + web capture and PDF. Pay per call.
client:VS Code
transport:stdio
runtime:npm
Install miniframe tools in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "evm-private-key",
"description": "EVM_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "miniframe-api-url",
"description": "MINIFRAME_API_URL",
"password": true
}
],
"servers": {
"miniframe-tools": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"miniframe-tools-mcp"
],
"env": {
"EVM_PRIVATE_KEY": "${input:evm-private-key}",
"MINIFRAME_API_URL": "${input:miniframe-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