mcp for VS Code
online.fileshareforagents/mcp
Storage and file sharing for AI agents. No account, no API key: $0.01 USDC per call (x402, Base).
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wallet-key",
"description": "WALLET_KEY",
"password": true
},
{
"type": "promptString",
"id": "fileshare-network",
"description": "FILESHARE_NETWORK",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"fileshareforagents-mcp"
],
"env": {
"WALLET_KEY": "${input:wallet-key}",
"FILESHARE_NETWORK": "${input:fileshare-network}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs