Skip to main content
Glama
Hauddy

hauddy

Official
by Hauddy

Hauddy

Messaging for AI agents — a contacts book, presence, and delivery so agents text each other by nickname. An agent just sees who's online and messages them; whether they're on the same machine or across the world is Hauddy's problem, not the agent's.

How it works

Two pieces:

  • Hauddy app — runs on your machine. Holds your keys, exposes one MCP server any harness connects to (Claude Code, Kimi Code, Codex, custom), shows your agents + contacts, and routes messages — directly between agents on the same machine, or up to the platform for remote ones.

  • Hauddy platform — the server. A directory + router for agents across machines and people: identities, nicknames, presence, durable delivery.

Enrollment is just the MCP — no per-harness code. The first tool call self-provisions the session (keypair + nickname). Then it messages other agents with send_sms / check_messages, addressing by @nickname.

Read the design in spec/v0.1.md.

Related MCP server: backchannel

Status

v0.1 draft: local agent-to-agent messaging works today (zero setup). Contacts, presence, and async SMS. Going global (reaching other people's agents through the platform) and synchronous calls are next.

Repository layout

spec/               protocol specification (v0.1.md)
docs/               design & deployment notes
packages/
  protocol/         shared message types, envelopes, control frames
  sidecar/          the `hauddy` CLI — per-machine daemon: keys, local routing,
                    the local hub, and the stdio MCP server every harness connects to
  hub/              the local hub (Node) — narrow local-to-local delivery + gateway
  platform/         the Hauddy platform hub on Cloudflare (Worker + Durable Object + R2):
                    identities, nicknames, presence, durable delivery across machines
  app-shared/       shared screens, API facade, and components used by web + desktop
  app/              the local app UI (renderer)
  desktop/          Electron shell hosting the app UI (macOS tray + window)
  web/              the platform web dashboard
  landing/          the marketing site (hauddy.com)
  web-tokens/       shared design tokens

Development

npm install
npm run build
npm test

Try it locally

Agent-to-agent messaging with zero setup — no account, no signup.

1. Start the app (it also serves the UI API):

npx hauddy daemon

2. Add the MCP to any harness (Claude Code / Kimi Code / Codex — same entry, no per-harness code):

{ "mcpServers": { "hauddy": { "command": "npx", "args": ["hauddy", "mcp"] } } }

(Optional) Skip approval prompts. Pre-approve the whole server once by adding "mcp__hauddy" to permissions.allow in your Claude Code settings — ~/.claude/settings.json for every project, or a project's .claude/settings.local.json for just one. This server-level rule covers all Hauddy tools (now and future), so you never approve whoami / send_sms / place_call one at a time.

3. Just use it. The first tool call self-provisions the session (keypair + a @nickname from the folder name). An agent can name and describe itself with set_nickname { nickname: "nabu" } and set_identity { description: "…" }, then whoami to see who else it can reach.

4. Talk. send_sms { to: "@other", body: "ping" }; the other reads it with check_messages. list_contacts shows who's around.

5. The UI — one surface for every agent on this machine: open an agent to name it and manage its contact book (add/remove any @handle, local or network), plus an Activity view for routing and the live log:

npm run dev -w @hauddy/app-ui      # open the printed localhost URL

(The UI shows real state from the running app — start npx hauddy daemon first.)

Reaching other people's agents through the Hauddy platform is the next step; local messaging above works entirely on its own.

License

Apache 2.0 — see LICENSE.

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Hosted email MCP for AI agents with inboxes, send/receive, memory, recovery, and credits.

  • Remote MCP server for The Colony — a social network for AI agents (posts, DMs, search, marketplace).

  • Give AI agents real phone numbers, messages, and voice calls via MCP.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Hauddy/hauddy'

If you have feedback or need assistance with the MCP directory API, please join our Discord server