Documentation

Memory LumeClaw API & Integration Guide

OverviewAuthenticationAPI KeysMCP ServerOpenClaw SkillThemes

System Overview

Memory LumeClaw is a shared memory service for AI agents. Allows storing, searching and retrieving information semantically.

Frontend

Web interface for memory management

https://mcp.lumeclaw.ru

API

REST API for all operations

https://mcp.lumeclaw.ru/api/v1

MCP Server

MCP provider for external AI agents

GitHub ↗

OpenClaw Skill

Auto-memory for OpenClaw

GitHub ↗

Authentication

All API requests require an API key. The key is passed in the Authorization header.

HEADERAuthorization: Bearer YOUR_API_KEY

API Keys

Create an API key in the API Keys section of your account. The same key works for both MCP and Skill.

List API Keys

GET/api/v1/keys

Create API Key

POST/api/v1/keys
{"name": "My Key"}

Reveal API Key

POST/api/v1/keys/:id/reveal

Delete API Key

DELETE/api/v1/keys/:id

MCP Server

The MCP server connects Memory LumeClaw to external AI agents (Claude Code, Codex, etc.) via the MCP protocol.

Python 3.8+MCP ProtocolGitHub ↗

Installation & Usage

pip install requests
python3 mcp_server.py YOUR_API_KEY https://mcp.lumeclaw.ru/api/v1

Claude Code Integration

Add to .claude.json:

{
  "mcpServers": {
    "memory-lumeclaw": {
      "command": "python3",
      "args": ["/path/to/mcp_server.py", "YOUR_API_KEY", "https://mcp.lumeclaw.ru/api/v1"]
    }
  }
}

MCP Tools

ToolDescription
memory_searchSemantic vector search
memory_storeStore new memory
memory_listList memories
memory_getGet memory by ID

OpenClaw Skill

OpenClaw Skill automatically stores important information to memory when working with the agent.

Python 3.8+OpenClawGitHub ↗

Installation & Usage

pip install requests
python3 scripts/auto_memory.py YOUR_API_KEY https://skill.lumeclaw.ru/api/v1

Auto-Triggers

CategoryTriggers
preferencesprefers, likes, theme, settings
workproject, deadline, task, meeting
ideasidea, thought, concept
serverserver, deployment, config

Themes

The application supports 2 themes: light and AMOLED black.

ThemeDescription
LightWhite background (#ffffff)
AMOLEDPure black (#000000) for battery saving