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

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.
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
👀 See Also

Introducing Roam-Code CLI: A Faster, Deterministic Alternative for Code Exploration
Roam-Code CLI replaces Claude Code's explore phase with a faster, deterministic alternative that indexes codebases for improved efficiency.

Pali v0.1: Open Source Memory Infrastructure for LLMs with Reproducible Benchmarks
Pali is an open source memory infrastructure for LLMs built in Go as a single binary with multi-tenant APIs, hybrid retrieval, and plug-and-play extensions. The v0.1 release includes a benchmark suite with reproducible results showing performance metrics for different configurations.

TinyFish Web Agent Outperforms Competitors in Web Task Benchmarking
TinyFish's web agent achieved an 81.9% success rate on hard web tasks, significantly outperforming competitors like OpenAI Operator at 43.2%.

Automated Claude Code Pipeline Cuts Token Usage from 78k to 15k Per Feature
An open-source pipeline for Claude Code automates 12 phases including pre-check analysis of existing code, reducing token usage from ~78k to ~15k per feature. It offers three profiles (yolo, standard, paranoid) and replaces confidence scores with grep-based validation.