Everything you need to build
Use the supported interfaces that connect applications, operators, and AI agents to memory.
Memory Service
Store, retrieve, and semantically search durable context for applications and AI agents.
Learn more →MCP Server
Connect AI assistants to memory operations through the Model Context Protocol.
Learn more →Authentication
Use OAuth for interactive sessions or scoped API keys for applications and automation.
Learn more →CLI & SDK
Work with memories from the Onasis CLI or the TypeScript memory client.
Learn more →Developer Dashboard
Manage account access and API keys from the LanOnasis dashboard.
Learn more →V-Secure
Explore the security tooling documentation and current integration guidance.
Learn more →Start building in minutes
Install the SDK, grab your API key, and you're ready to go. Our APIs are designed to be intuitive and developer-friendly.
Install the SDK
npm install @lanonasis/memory-clientGet your API key
Create a free account at dashboard.lanonasis.com
Make your first request
Create a memory, then retrieve it with semantic search
import { createMemoryClient } from '@lanonasis/memory-client';
const client = createMemoryClient({
apiUrl: 'https://api.lanonasis.com',
apiKey: process.env.LANONASIS_API_KEY,
});
await client.createMemory({
title: 'Project context',
content: 'The deployment uses the production memory API.',
memory_type: 'context',
tags: ['project'],
});
const results = await client.searchMemories({
query: 'production deployment',
limit: 5,
});
Designed for developers
RESTful APIs with consistent patterns, comprehensive documentation, and interactive playground.
OpenAPI Spec
Full OpenAPI 3.1 specification for code generation and tooling integration.
Idempotency
Built-in idempotency keys to safely retry requests without duplicate operations.
Scoped access
Authenticate with OAuth or API keys and apply personal, team, or enterprise memory context.
MCP tools
Expose supported memory operations to compatible AI clients and agents.
Ready to build something amazing?
Start with the memory API, then connect the same context to your tools and agents.