Build agents that run social media on autopilot.
One-click MCP connect (OAuth — listed in the official MCP registry), an open-source skill, and a REST API. Drop ViralNote into your agent and it learns 15 tools immediately. MIT-licensed, no vendor lock-in.
What an agent run looks like.
- Tuesday 9am — “Building public roadmaps”
- Thursday 9am — “What we learned shipping MCP”
- Friday 11am — “Three patterns for AI-driven content”
Install the skill.
The skill teaches your agent the ViralNote API surface — 15 tools, error handling, common workflows. MIT-licensed.
npx skills add viralnote/viralnote-skillcurl https://dashboard.viralnote.app/api/v1/posts \
-H "Authorization: Bearer vnd_..."Full OpenAPI spec at viralnote.app/developers/docs.
Native MCP + ClawHub skill.
OpenClaw 2026.3.22+ speaks MCP natively. Connect all 15 ViralNote tools via HTTP, or install the MIT skill for REST API workflows.
MCP (15 tools, recommended)
openclaw mcp set viralnote '{
"url": "https://dashboard.viralnote.app/api/mcp/mcp",
"transport": "streamable-http",
"headers": { "x-api-key": "vnd_..." }
}'
openclaw mcp reloadMCP via stdio npm package
openclaw mcp add viralnote \
--command npx \
--arg -y \
--arg @viralnote/mcp-server \
--env VIRALNOTE_API_KEY=vnd_...Skill (REST API)
clawhub install @viralnote/viralnote
# or: openclaw skills install @viralnote/viralnoteSet VIRALNOTE_API_KEY=vnd_... in your OpenClaw environment. Get a key at dashboard.viralnote.app/developers/auth.
Deeper agent patterns: Using our API with OpenClaw. MCP setup: /mcp. Marketplace: Smithery.
MCP client + autonomous runs.
Hermes Agent connects to remote HTTP MCP servers and local stdio packages. Add ViralNote under mcp_servers in ~/.hermes/config.yaml, then start a new session — all 15 tools appear in the agent's tool list.
HTTP MCP (recommended)
# ~/.hermes/config.yaml
mcp_servers:
viralnote:
url: https://dashboard.viralnote.app/api/mcp/mcp
headers:
x-api-key: vnd_...Stdio via npm
# ~/.hermes/config.yaml
mcp_servers:
viralnote:
command: npx
args: ["-y", "@viralnote/mcp-server"]
env:
VIRALNOTE_API_KEY: vnd_...Get a key at dashboard.viralnote.app/developers/auth. Restart Hermes after editing config. Docs: Hermes MCP guide.
What teams build with it.
Scheduled content engines
RSS → schedule pipeline, daily/weekly cadence
Cross-platform reposting
Mirror posts between platforms with per-platform tweaks
Performance monitoring
Watch for engagement thresholds, alert on failures
Bulk content operations
Schedule months of content from a spreadsheet
Multi-account orchestration
Manage many brand accounts from one agent
Open source
MIT-licensed. Source: github.com/viralnote/viralnote-skill and github.com/viralnote/mcp-server. Open issues, send PRs.
