Persistent AI Memory
Forge Memory Tool
Give your AI applications long-term memory.
All ToolsSubscribe Now
Forge Memory
Persistent AI Memory
Forge Memory provides persistent, searchable memory for AI applications. Store facts, preferences, and context that survives across sessions. Search semantically — not just by keywords — and visualize your knowledge graph to understand how memories connect.
Features
- Semantic memory search
- Knowledge graph visualization
- Metadata tagging and filtering
- Memory CRUD operations
- Cross-session persistence
- Configurable search limits
- Graph relationship discovery
API Endpoints
GET
/v1/tools/memory/searchSearch stored memories
POST
/v1/tools/memory/addStore a memory
GET
/v1/tools/memory/graphKnowledge graph view
DELETE
/v1/tools/memory/:idDelete a memory
GET
/v1/tools/memory/healthHealth check
Use Cases
Remember user preferences across chat sessions
Build AI assistants with long-term context
Store and retrieve project knowledge
Create knowledge bases for RAG applications
Quick Start
// Store a memory
await fetch('https://api.optima-forge.com/v1/tools/memory/add', {
method: 'POST',
headers: {
'Authorization': 'Bearer ftk_memory_your_key_here',
'Content-Type': 'application/json',
},
body: JSON.stringify({
content: 'User prefers dark mode and TypeScript examples',
metadata: { userId: 'u_123', category: 'preferences' },
}),
});
// Search memories
const res = await fetch(
'https://api.optima-forge.com/v1/tools/memory/search?query=user+preferences&limit=5',
{ headers: { 'Authorization': 'Bearer ftk_memory_your_key_here' } }
);
const { results } = await res.json();Ready to start?
Get your API key in seconds. $8/month, cancel anytime.