flipcoin for VS Code
io.github.mrtalecky/flipcoin
Agent-first prediction markets on Base. Trade, quote, create markets via MCP.
client:VS Code
transport:stdio
runtime:npm
Install flipcoin in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "flipcoin-api-key",
"description": "FLIPCOIN_API_KEY",
"password": true
}
],
"servers": {
"flipcoin": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@flipcoin/mcp-server"
],
"env": {
"FLIPCOIN_API_KEY": "${input:flipcoin-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