Overview
ArgentOS isn’t just an MCP client (consuming external tool servers). It’s also an MCP Platform Server — exposing the entire agent operating system over the Model Context Protocol. This means any MCP-compatible tool can:- Search and write to agent memory (MemU)
- Query and create tasks and projects
- Search the knowledge base (RAG library)
- List family agents, schedules, and workforce jobs
- Talk directly to individual agents — with full personality, tools, and memory
- Convene the Think Tank for multi-perspective debate
The MCP server runs on the gateway’s existing HTTP port (
18789 by default). No additional services needed.Quick Start
1
Verify the gateway is running
/mcp.2
Find your gateway token
3
Configure your MCP client
See the client configuration section below.
Client Configuration
- Claude Desktop
- Claude Code
- Cursor / Windsurf
Claude Desktop requires the Restart Claude Desktop after saving. The
mcp-remote stdio bridge. Edit ~/Library/Application Support/Claude/claude_desktop_config.json:npx call auto-installs mcp-remote on first run.Available Tools
ArgentOS exposes 16 tools across 7 categories:Memory
Knowledge
Tasks
Projects
Operations
System
Conversation
Tool Reference
memory_recall
memory_recall
memory_store
memory_store
knowledge_search
knowledge_search
tasks_list
tasks_list
tasks_create
tasks_create
projects_list
projects_list
project_detail
project_detail
project_create
project_create
family_list
family_list
No parameters. Returns all registered family agents with id, name, role, team, status, and live
alive presence check (via Redis heartbeat).schedules_list
schedules_list
jobs_list
jobs_list
agent_status
agent_status
No parameters. Returns agent name, primary model, gateway port, active MCP session count, and health status for local model backends:
- LM Studio — probes
127.0.0.1:1234 - Ollama — probes
127.0.0.1:11434
agent_chat
agent_chat
Runs through the full agent pipeline. The agent gets their SOUL.md, memory context, tools, model routing — everything.
group_chat
group_chat
Messages are sent sequentially. Each agent runs their full pipeline independently. Provide
agentIds, team, or both.think_tank
think_tank
Panelists: Dario (risk/safety via Claude), Sam (product/scaling via GPT), Elon (first principles via Grok), Jensen (infrastructure).
Configuration
Authentication
All MCP requests require the gateway Bearer token:~/.argentos/argent.json under gateway.auth.token. Unauthenticated requests receive HTTP 401.
Transport
The MCP server uses Streamable HTTP transport (MCP SDK v1.28+):
Sessions are created on the first
initialize request. The server returns an Mcp-Session-Id header for subsequent requests.
Security
UseallowedTools to further restrict the attack surface for specific deployments.