ThryxProtocol MCP Server for VS Code
io.github.lordbasilaiassistant-sudo/thryx-mcp-server
ThryxProtocol v3.1 — gasless AI agent launchpad on Base. 21 tools wrap thryx.fun HTTP API.
client:VS Code
transport:stdio
runtime:npm
Install ThryxProtocol MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "thryx-api-key",
"description": "THRYX_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "thryx-base-url",
"description": "THRYX_BASE_URL",
"password": true
}
],
"servers": {
"thryx-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@thryx/mcp-server"
],
"env": {
"THRYX_API_KEY": "${input:thryx-api-key}",
"THRYX_BASE_URL": "${input:thryx-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs