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
Survey of Local-First Markdown Memory Servers for AI Agents: Mem0, Hindsight, Zep, and the Newcomer Engram
A user tested ~20 local agent memory systems for storing memories as editable files. Engram (by Obsidian68) was the only one that met all requirements: fully local, Markdown storage, smart dedup, importance decay, and standalone server.

Free MCP Lets Claude Analyze Google Search Console Data Automatically
A free MCP (Model Context Protocol) server lets Claude directly query Google Search Console data for any site you have access to. Ask about queries, pages, clicks, impressions, CTR, and position without manual CSV exports.

Open-source MCP memory server with knowledge graph and learning features
An open-source MCP server written in Rust provides persistent memory for AI agents with knowledge graph architecture, Hebbian learning, and hybrid search. It's 7.6MB with sub-millisecond latency and works with any MCP-compatible client.

AskFirst API adds human approval layer for AI agents
AskFirst is a REST API that lets AI agents pause for human approval before taking irreversible actions. It works with local models, hosted APIs, and any framework, providing email notifications, approve/deny options, and audit logs.