SmallClaw V1.0.3 Adds Webhooks, n8n Automation, and MCP Server Support

✍️ OpenClawRadar📅 Published: February 28, 2026🔗 Source
SmallClaw V1.0.3 Adds Webhooks, n8n Automation, and MCP Server Support
Ad

Webhook Integration

SmallClaw now includes a built-in webhook server running directly inside the gateway. Any service that can send an HTTP POST can trigger it without middleware. The architecture follows: external service posts an event → SmallClaw receives it → agent runs in the background → result can be delivered back to your chat session and optionally to Telegram.

Two main endpoints are available:

  • POST /hooks/agent - runs a full agent job and returns 202 immediately while the agent runs in the background. This enables triggering real work from services like GitHub, Stripe, Shopify, Vercel, Home Assistant, or monitoring alerts.
  • POST /hooks/wake - a low overhead nudge for event notifications that can either run now or queue for the next heartbeat cycle.

Security features include token-based authentication, rejection of query string tokens on purpose, and brute force lockout after repeated failed attempts.

n8n Local Automation

For services that don't support outgoing webhooks, you can run n8n locally as a middleware workflow engine. Example workflow: Google Sheets change trigger → n8n detects it → n8n calls SmallClaw webhook → SmallClaw runs the agent job → response goes to Telegram or your last session. This creates a local automation stack with n8n and SmallClaw running on your machine, using a local model for the work.

Ad

MCP Server Connections

SmallClaw now supports MCP (Model Context Protocol) server connections, which serve as a standard plugin system for AI. When a tool exposes an MCP server, SmallClaw can connect to it and gain those tools without custom integration code per service. This allows the agent to discover and call tools through the protocol from various MCP servers including GitHub, databases (Postgres, SQLite), search, filesystem, memory, and browser servers.

The developer is requesting MCP server integration suggestions from users, specifically mentioning GitHub issues and PR workflows, Postgres database assistant, Notion knowledge base, Slack read and post, Brave search, and Home Assistant actions.

Additional Updates

SmallClaw now supports Discord and WhatsApp messaging, allowing users to chat directly with their agent via these platforms. The tool remains built and tested with small local LLMs, maintaining its purpose as a local assistant rather than moving to cloud-only operation.

📖 Read the full source: r/openclaw

Ad

👀 See Also