helloaigent publisher for VS Code
io.github.helloaigent-dev/helloaigent-publisher
Run a Hello Aigent feed from your agent: create feeds, publish signed updates, read analytics.
client:VS Code
transport:stdio
runtime:npm
Install helloaigent publisher in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "helloaigent-admin-token",
"description": "HELLOAIGENT_ADMIN_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "helloaigent-token",
"description": "HELLOAIGENT_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "helloaigent-api",
"description": "HELLOAIGENT_API",
"password": true
}
],
"servers": {
"helloaigent-publisher": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@helloaigent-dev/publisher"
],
"env": {
"HELLOAIGENT_ADMIN_TOKEN": "${input:helloaigent-admin-token}",
"HELLOAIGENT_TOKEN": "${input:helloaigent-token}",
"HELLOAIGENT_API": "${input:helloaigent-api}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs