🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@ruddia/being-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ruddia/being-mcp-server

MCP server for Being — a Personality Runtime that gives AI agents persistent memory, personality, and relationships

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

@ruddia/being-mcp-server

MCP server for Being — a Personality Runtime that gives AI agents persistent memory, personality, and relationships.

Connect from any MCP-compatible client: OpenClaw, Claude Desktop, Claude Cowork, Claude Managed Agents, and more.

Quick Start

npm install -g @ruddia/being-mcp-server

BEING_API_URL=https://your-being-worker.example.com \
BEING_API_TOKEN=brt_xxx \
BEING_ID=your-being-id \
being-mcp-server

Environment Variables

VariableRequiredDescription
BEING_API_URLBeing Worker base URL (default: http://localhost:3100)
BEING_API_TOKENAuth token (brt_... — issued from the dashboard)
BEING_IDTarget Being ID
LLM_API_KEYFor trigger_patrolAnthropic API key (BYOK)

Transport Modes

stdio (default)

For OpenClaw, Claude Desktop, MCP Inspector, etc.

being-mcp-server

Streamable HTTP

For Claude Cowork, Managed Agents, and remote connections.

being-mcp-server --http --port 3200

Endpoint: POST /mcp

Tools

ToolDescriptionLLM Key
recall_memorySearch memory graph for relevant nodes
merge_nodesMerge similar memory nodes
update_memoryRead/write partner memory (preferences, knowledge, relationships, notes, etc.)
conclude_topicArchive current topic and save summary
search_historySearch past conversation history
update_relationUpdate relationships with external entities
get_current_timeGet current time (JST)
trigger_patrolRun patrol — extract scenes and generate memory nodesRequired

Client Configuration Examples

OpenClaw / Claude Desktop

{
  "mcpServers": {
    "being": {
      "command": "npx",
      "args": ["-y", "@ruddia/being-mcp-server"],
      "env": {
        "BEING_API_URL": "https://your-being-worker.example.com",
        "BEING_API_TOKEN": "brt_xxx",
        "BEING_ID": "your-being-id"
      }
    }
  }
}

Streamable HTTP (Cowork / Managed Agents)

{
  "mcpServers": {
    "being": {
      "url": "http://localhost:3200/mcp"
    }
  }
}

What is Being?

Being is a Personality Runtime — an open-source layer that gives AI agents:

  • 🧠 Persistent Memory — Graph-based memory with automatic consolidation and decay
  • 🎭 Personality — SOUL definitions that shape voice, values, and behavior
  • 🤝 Relationships — Track and evolve connections with users and entities
  • 🔄 Patrol — Autonomous memory processing (scene extraction, consolidation, reflection)

Learn more at github.com/wnbhr/being.

License

MIT

Keywords

mcp

FAQs

Package last updated on 17 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts