lazyrelay mcp server for VS Code
io.github.gosswerner1-max/lazyrelay-mcp-server
Schedule social posts, check Proof-of-Publish status, pull analytics, and read mentions.
client:VS Code
transport:stdio
runtime:npm
Install lazyrelay mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "lazyrelay-api-key",
"description": "LAZYRELAY_API_KEY",
"password": true
}
],
"servers": {
"lazyrelay-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@lazyrelay/mcp-server"
],
"env": {
"LAZYRELAY_API_KEY": "${input:lazyrelay-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