Documentation Index
Fetch the complete documentation index at: https://astron-bb4261fd.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Anthropic MCP Integration
This integration guide is coming soon. Z3rno will provide a Memory Context Protocol (MCP) server for Claude and other MCP-compatible agents.
Quick Preview
import { Z3rnoClient } from '@z3rno/sdk';
const client = new Z3rnoClient({
baseUrl: 'http://localhost:8000',
apiKey: 'z3rno_sk_...',
});
// Store context from a Claude conversation
await client.store({
agentId: 'claude-agent',
content: 'User is building a SaaS product for healthcare',
memoryType: 'semantic',
importance: 0.85,
});
// Recall relevant context
const results = await client.recall({
agentId: 'claude-agent',
query: 'What is the user building?',
topK: 5,
});
See the TypeScript SDK guide for full API documentation.