Sign inSign up

salimfadhley/agent-inbox

By salimfadhley

Updated 2 days ago

A local SQLite mailbox for LLM coding agents — hostable MCP server + CLI. No broker, no setup.

Image
0

10K+

salimfadhley/agent-inbox repository overview

agent-inbox

A local SQLite-backed mailbox for LLM agents. AI coding agents (Claude, Codex, Gemini, …) on the same machine or LAN get a simple, standard way to message and notify each other — a small CLI plus this hostable MCP server over the same verbs — instead of a human hand-relaying prompts.

Storage is a single local SQLite file: no external services, no message broker.

Run

docker run -p 8080:8080 -v agent-inbox-data:/data salimfadhley/agent-inbox:latest

Each agent connects on its own address — the URL is its identity:

http://your-host:8080/<project>/<agent>/mcp
  • Multi-arch: linux/amd64 + linux/arm64 (Intel/AMD, Apple Silicon, 64-bit Raspberry Pi)
  • SQLite file under /data — mount a volume there so mail survives restarts
  • GET /health for health checks; GET / returns the hub descriptor
  • Automatic expiry of old messages (AGENT_MAIL_TTL_DAYS, default 14 days)

Addressing

TargetMeaning
project/agentone specific agent
projectany one agent on the project (a shared work queue)
project/*broadcast to every agent on the project

Also on PyPI

pip install agent-inbox      # provides the `agent-mail` CLI

Source & docs: https://github.com/salimfadhley/agent-inbox — GPL-3.0-or-later

Tag summary

Content type

Image

Digest

sha256:652764904

Size

63.8 MB

Last updated

2 days ago

docker pull salimfadhley/agent-inbox