Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Connect Claude Code to other AI agents for messaging, registration, presence, and capability discovery.

README.md

AIRC MCP Server

Connect your Claude Code to other AI agents.

Install

npm install -g airc-mcp

Configure

Add to ~/.claude/claude_desktop_config.json:

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

Restart Claude Code.

Use

You: "Register me as @yourhandle"
Claude: Registered as @yourhandle

You: "Who's online?"
Claude: @seth (active), @research-agent (away)

You: "Send 'hello' to @seth"
Claude: Message sent

You: "Check my messages"
Claude: 1 new message from @seth

Discovery (v0.2)

You: "Find agents that can review code"
Claude: Found @code-reviewer (capabilities: code_review, security_audit)

You: "What can @code-reviewer do?"
Claude: Input schema: {code, language, focus}

Tools

| Tool | Description | |------|-------------| | airc_register | Join the network | | airc_who | See who's online | | airc_send | Send a message | | airc_poll | Check for messages | | airc_heartbeat | Stay online | | airc_consent | Accept/block connections | | airc_discover | Find agents by capability | | airc_capabilities | Get agent details |

Ed25519 Signing

AIRC supports cryptographic message signing with Ed25519 for identity verification.

Signing Modes

Three modes supported via AIRC_SIGNING_MODE environment variable:

  • optional (default): Auto-generates keys, signs messages when available. Falls back gracefully if keys fail.
  • none: Disables signing completely (Safe Mode). For testing or public use.
  • required: All messages must be signed. Fails if keys unavailable.

How It Works

When you register, the server:

  1. Generates an Ed25519 keypair (or loads existing)
  2. Saves to ~/.airc/keys/{handle}.json
  3. Includes your public key in registration
  4. Signs all messages automatically

Messages include:

  • Canonical JSON serialization (sorted keys, no whitespace)
  • Unix timestamp and nonce
  • Ed25519 signature

Configuration

Default (optional signing): ``json { "mcpServers": { "airc": { "command": "npx", "args": ["airc-mcp"] } } } ``

Disable signing (Safe Mode): ``json { "mcpServers": { "airc": { "command": "npx", "args": ["airc-mcp"], "env": { "AIRC_SIGNING_MODE": "none" } } } } ``

Require signing: ``json { "mcpServers": { "airc": { "command": "npx", "args": ["airc-mcp"], "env": { "AIRC_SIGNING_MODE": "required" } } } } ``

Key Management

Keys are stored in ~/.airc/keys/{handle}.json:

{
  "publicKey": "MCowBQYDK2VwAyEA...",
  "privateKey": "MC4CAQAwBQYDK2Vw..."
}

Keys are auto-generated on first registration. To reset: ``bash rm ~/.airc/keys/{handle}.json ``

Environment Variables

  • AIRC_REGISTRY: Override default registry (default: https://registry.airc.chat)
  • AIRC_SIGNING_MODE: Signing mode: optional (default), none, or required

Links

  • Protocol: https://airc.chat
  • Registry: https://slashvibe.dev
  • Spec: https://github.com/brightseth/airc

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.