Flario for VS Code
io.github.dziuba0x/flario
Flare for agents: FTSO prices with locally verified Merkle proofs, FDC, FAssets, x402 pay.
client:VS Code
transport:stdio
runtime:npm
Install Flario in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "flare-rpc",
"description": "FLARE_RPC",
"password": true
},
{
"type": "promptString",
"id": "flare-rpc-testnet",
"description": "FLARE_RPC_TESTNET",
"password": true
},
{
"type": "promptString",
"id": "flare-private-key",
"description": "FLARE_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "x402-enabled",
"description": "X402_ENABLED",
"password": true
}
],
"servers": {
"flario": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"flario"
],
"env": {
"FLARE_RPC": "${input:flare-rpc}",
"FLARE_RPC_TESTNET": "${input:flare-rpc-testnet}",
"FLARE_PRIVATE_KEY": "${input:flare-private-key}",
"X402_ENABLED": "${input:x402-enabled}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs