loading…
Search for a command to run...
loading…
AgentOS provides a suite of essential services for AI agents including persistent key-value memory, format conversion, and activity logging. It offers advanced
AgentOS provides a suite of essential services for AI agents including persistent key-value memory, format conversion, and activity logging. It offers advanced tools for task state management and cost control to streamline and manage complex agent workflows.
The infrastructure layer that gives AI agents persistent memory, task management, and team collaboration capabilities. Think of it as the SQLite of the AI agent world — one MCP server, zero config, every service your agent needs.
AI agents today have a critical limitation: they forget everything when the conversation ends. Without persistent infrastructure, agents cannot:
AgentOS fixes this by providing the missing operating system layer for AI agents.
AgentOS is an MCP (Model Context Protocol) server that gives AI agents the same infrastructure that traditional software takes for granted: persistent storage, state management, collaboration tools, and monitoring.
1. Persistent Memory Your agents can store and retrieve data across sessions. Set a value today, retrieve it next week. Namespaces keep data organized, and TTL support enables temporary storage that auto-expires.
2. Task Management Break complex workflows into trackable tasks with checkpoints. Create a task, save progress at key milestones, rollback if something goes wrong, and maintain a complete history of what happened.
3. Resource Protection Set budgets to prevent runaway loops and resource exhaustion. Automatic loop detection catches infinite cycles before they drain your compute budget.
4. Team Collaboration Create isolated workspaces for teams. Manage members with role-based permissions (admin, manager, member, viewer). Share resources while maintaining security boundaries.
5. Enterprise Security Complete audit trails for SOC2, GDPR, and HIPAA compliance. Data encryption at rest. Role-based access control with granular permissions.
6. Operations & Monitoring Real-time performance metrics, intelligent alerting, capacity planning, and business intelligence reporting. Know when to scale before you hit limits.
7. Workflow Automation Template engine for reusable document and workflow patterns. Convert between formats (Markdown, HTML, CSV, JSON, YAML, XML). Structured logging with search and export.
With AgentOS, your AI agents can now:
Add to your Claude Desktop or any MCP client:
{
"mcpServers": {
"agentos": {
"command": "npx",
"args": ["-y", "agentos-mcp"]
}
}
}
No configuration needed. AgentOS automatically creates a local SQLite database at ~/.agentos/agentos.db for persistent storage.
Personal Productivity
Software Development
Team Collaboration
Enterprise Operations
# Install globally
npm install -g agentos-mcp
# Run standalone
agentos-mcp
# Or use with npx (no install needed)
npx -y agentos-mcp
# Clone and install
git clone https://github.com/netflypsb/agentos.git
cd agentos
npm install
# Development mode
npm run dev
# Build
npm run build
# Test
npm test
Claude Desktop · Claude Code · Cursor · Windsurf · VS Code · Zed · any MCP client
MIT License — see LICENSE file for details.
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"agentos": {
"command": "npx",
"args": []
}
}
}