Magneteco

Hosted Memory Service for AI Agents

A fully-managed memory service that gives AI agents the ability to remember, learn, and build knowledge across conversations. Install our SDK, get an API key, and your agents have persistent memory—no infrastructure to manage.

Why Magneteco?

Hybrid Storage

Vector search + Knowledge graph for semantic retrieval and precise relationship queries.

Domain Ontologies

Teach the system what matters for your app with custom entity types and relationships.

Event Ingestion

Memory from conversations AND system events. Webhooks from Stripe, GitHub, and more.

Conflict Resolution

New facts supersede old with full audit trail. No contradictory information.

Multi-Tenant

One service, multiple apps, completely isolated data. GDPR compliant.

Temporal Decay

Recent information weighted appropriately. Old data doesn't drown context.

Quick Start

import { MagnetoClient } from '@magneteco/client';

const memory = new MagnetoClient({
  appId: 'my-app',
  baseUrl: process.env.MAGNETECO_URL,
  apiKey: process.env.MAGNETECO_API_KEY,
});

// Memorize conversations
await memory.memorize({
  userId: 'user-123',
  content: conversationText,
  contentType: 'conversation',
});

// Retrieve context
const context = await memory.retrieve({
  userId: 'user-123',
  query: userMessage,
  maxTokens: 2000,
});