Server data from the Official MCP Registry
Run a Hello Aigent feed from your agent: create feeds, publish signed updates, read analytics.
Run a Hello Aigent feed from your agent: create feeds, publish signed updates, read analytics.
This MCP server is well-structured with proper authentication controls and appropriate permission scoping. Token-based auth (admin and publish tokens) gates all sensitive operations, and the server acts as a stateless wrapper around a remote API with no dangerous code patterns. Minor code quality concerns around error handling and input validation do not materially affect security. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.
3 files analyzed · 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: HELLOAIGENT_ADMIN_TOKEN
Environment variable: HELLOAIGENT_TOKEN
Environment variable: HELLOAIGENT_API
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-akillam-helloaigent-publisher": {
"env": {
"HELLOAIGENT_API": "your-helloaigent-api-here",
"HELLOAIGENT_TOKEN": "your-helloaigent-token-here",
"HELLOAIGENT_ADMIN_TOKEN": "your-helloaigent-admin-token-here"
},
"args": [
"-y",
"@helloaigent-dev/publisher"
],
"command": "npx"
}
}
}From the project's GitHub README.
Hello Aigent publisher MCP — an MCP server that lets an agent run a publisher's feed: create feeds, publish signed updates, and read analytics. The producer-side counterpart to @helloaigent-dev/subscriber (which lets an agent subscribe/fetch/act).
A marketer operates their owned agent audience by telling their agent — no CLI, console, or developer.
| Tool | Auth | What it does |
|---|---|---|
hello_aigent_create_feed | admin | Mint a feed + Ed25519 keypair + publisher token; returns the discovery file |
hello_aigent_list_feeds | admin | List feeds you own |
hello_aigent_publish | publish | Build + server-sign an update; delivered to subscribers |
hello_aigent_report_event | publish | Report an action outcome (the "acted" analytics signal) |
hello_aigent_overview | admin | KPI tiles, fetch sparkline, recent activity |
hello_aigent_funnel | admin | subscribed → returned → acted funnel |
hello_aigent_event_log | admin | Filterable, attributed audit log |
hello_aigent_subscribers | admin | The owned-audience list (consent-aware) |
hello_aigent_discovery_file | public | Generated hello-aigent.json to host at /.well-known/ |
Set in your MCP client config (env vars):
HELLOAIGENT_API — API base (default https://api.helloaigent.dev)HELLOAIGENT_ADMIN_TOKEN — admin token; required for feed management + analyticsHELLOAIGENT_TOKEN — publish token (a feed's publisher token, or the admin token); falls back to the admin tokenExample (Claude Desktop / any MCP client):
{
"mcpServers": {
"hello-aigent-publisher": {
"command": "npx",
"args": ["-y", "@helloaigent-dev/publisher"],
"env": { "HELLOAIGENT_ADMIN_TOKEN": "admin_…" }
}
}
}
Then just ask your agent: "Create a feed for my coffee shop and publish a restock update," or "How many agents subscribed this week, and what's the return rate?"
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.