Skip to main content
Memory API + MCP

LanOnasis
Developer Platform

Give applications and AI agents durable, searchable context through a focused memory API, MCP tools, CLI, and TypeScript SDK.

RESTMemory API
MCPAgent tools
OAuthInteractive auth
API keysAutomation auth

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.

1

Install the SDK

npm install @lanonasis/memory-client
2

Get your API key

Create a free account at dashboard.lanonasis.com

3

Make your first request

Create a memory, then retrieve it with semantic search

example.ts
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.