Flarelink for VS Code
io.github.flarelink-dev/mcp
Build on the Flarelink stack — Cloudflare auth, D1, and R2 — from your AI coding tools.
client:VS Code
transport:stdio
runtime:npm
Install Flarelink in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "flarelink-api-key",
"description": "FLARELINK_API_KEY",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@flarelink/mcp"
],
"env": {
"FLARELINK_API_KEY": "${input:flarelink-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs