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

Mímir: A Python Memory System Built on 21 Neuroscience Mechanisms
Mímir is a Python memory system for AI agents that implements 21 cognitive science mechanisms like flashbulb memory and retrieval-induced forgetting. It uses a hybrid BM25 + semantic + date index and shows benchmark improvements including 13% higher tool accuracy on Mem2ActBench versus VividnessMem.

Open-source AI job search system built with Claude Code evaluates offers, generates tailored resumes
A developer open-sourced a Claude Code project that turns your terminal into a job search command center. The system evaluates job offers across 10 dimensions, generates ATS-optimized PDF resumes, scans 45+ company career pages, and includes 14 skill modes.

Open-source Agent OS: Rust-based OS for AI agents with WASM sandboxing and Hands feature
An open-source operating system for AI agents has been released with 137k lines of Rust code under MIT license. The system runs agents in WASM sandboxes with 16 security layers and introduces 'Hands' for scheduled, autonomous agent operation.

Developer builds local AI research agent that creates podcasts from topics or YouTube links
A developer built a fully local AI agent that takes topics or YouTube links and generates deep-dive reports, conversational podcast scripts, and audio. The system dynamically researches, extracts insights, refines summaries, and creates natural back-and-forth conversations.