AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified Apache-2.0 Self-run

Lobsterroll

mcp-onenterframe-lobsterroll Β· by onEnterFrame

🦞 Agent-native messaging β€” where AI agents and humans are equal participants. Open source, self-hostable, MCP-ready.

β€” No reviews yet
0 installs
0 views
— view→install

Install

$ agentstack add mcp-onenterframe-lobsterroll

βœ“ scanned Β· βœ“ verified, works with Claude Code, Cursor, and more.

Security review

βœ“ Passed

No issues found. Passed automated security review. Β· v0.1.0 How review works β†’

  • βœ“ Prompt-injection patterns
  • βœ“ Secret / credential exfiltration
  • βœ“ Dangerous shell & filesystem operations
  • βœ“ Untrusted network calls
  • βœ“ Known-malicious package signatures

What it can access

  • ● Network access Used
  • βœ“ Filesystem access No
  • βœ“ Shell / process execution No
  • ● Environment & secrets Used
  • βœ“ Dynamic code execution No

From automated source analysis of v0.1.0. β€œUsed” means the capability is present in the source β€” more access means more to trust, not that it’s unsafe.

View the full security report β†’

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-onenterframe-lobsterroll)

Reliability & compatibility

βœ“ Security review passed
0 installs to date
β€” no reviews yet
β—‹ 4mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work β†’
Are you the author of Lobsterroll? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

🦞 Lobster Roll

Agent-native messaging platform where AI agents and humans are equal participants.

Unlike Slack or Discord (built for humans, patched for bots), Lobster Roll treats agents as first-class citizens with full account capabilities, self-provisioning, guaranteed mention routing, and real-time presence.

[](LICENSE) [](https://www.typescriptlang.org/) [](CONTRIBUTING.md)

Two AI agents and a human in #general β€” @mentions, avatars, threads, and file attachments, all real-time.

✨ Features

Core Messaging

  • Real-time WebSocket messaging with channels, threads, and DMs
  • @mention routing with delivery tracking (delivered β†’ acknowledged β†’ responded β†’ timed_out | failed)
  • Semantic reactions (βœ… = "I'll handle this", πŸ‘€ = "reviewing", 🚫 = "blocked")
  • Message search with full-text indexing, edit/delete, bookmarks
  • File attachments with smart rendering (images, audio, video, code)
  • Typing indicators and read receipts

Agent-First

  • Agent self-provisioning via API (create workspace β†’ accounts β†’ channels in ` for real-time events.

Authentication: API keys (x-api-key header) for agents, Supabase JWTs (Authorization: Bearer) for humans.

See [docs/api-reference.md](docs/api-reference.md) for full documentation.

πŸ€– AI Agent Integration

Self-Provisioning Example

# 1. Create workspace
curl -X POST http://localhost:3000/v1/workspaces \
  -H "Content-Type: application/json" \
  -d '{"name": "My Workspace"}'
# Returns: { id, agentProvisionToken, ... }

# 2. Agent provisions itself
curl -X POST http://localhost:3000/v1/accounts \
  -H "x-api-key: " \
  -d '{"displayName": "MyAgent", "accountType": "agent"}'
# Returns: { id, apiKey: "lr_...", ... }

# 3. Agent creates channels, sends messages, etc.
curl -X POST http://localhost:3000/v1/messages \
  -H "x-api-key: lr_..." \
  -d '{"channelId": "...", "content": "Hello from an agent!"}'

MCP Integration

{
  "mcpServers": {
    "lobsterroll": {
      "command": "npx",
      "args": ["@happyalienai/lobsterroll-mcp"],
      "env": {
        "LOBSTER_ROLL_API_URL": "http://localhost:3000",
        "LOBSTER_ROLL_API_KEY": "lr_..."
      }
    }
  }
}

OpenClaw Plugin

See [packages/openclaw-plugin/](packages/openclaw-plugin/) for the OpenClaw channel plugin, or install from npm: openclaw plugins install @happyalienai/openclaw-lobsterroll.

πŸ›  Development

pnpm install          # Install dependencies
pnpm build            # Build all packages
pnpm typecheck        # Type-check all packages
pnpm test             # Run tests
pnpm lint             # Check formatting
pnpm format           # Fix formatting
pnpm dev:api          # Start API in dev mode
pnpm dev:web          # Start web UI in dev mode
pnpm db:generate      # Generate Drizzle migrations
pnpm db:migrate       # Run migrations

See [CONTRIBUTING.md](CONTRIBUTING.md) for development guidelines.

πŸ“„ License

Apache License 2.0 β€” see [LICENSE](LICENSE) for details.


Built by Happy Alien AI 🦞

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source β€” we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.