Now supporting Model Context Protocol (MCP)

Long-term memory for AI agents

Give your AI the context it needs. OrbitalMCP stores, indexes, and retrieves knowledge via REST API and the Model Context Protocol.

example.ts
// Ingest knowledge into OrbitalMCP
await fetch('https://api.orbitalmcp.com/v1/ingest', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer your_api_key',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    content: 'Your documentation, code, or any text...',
    source: 'my-project',
    metadata: { version: '1.0' }
  })
});

// Query with semantic search
const results = await fetch('https://api.orbitalmcp.com/v1/query', {
  method: 'POST',
  headers: { 'Authorization': 'Bearer your_api_key' },
  body: JSON.stringify({ query: 'How does authentication work?' })
});

Everything your AI needs

Built for developers who want to give their AI agents persistent memory

Vector Storage

Powered by PostgreSQL + pgvector. Your data stays in a battle-tested database, not a black box.

MCP Native

First-class Model Context Protocol support. Works seamlessly with Claude, Cursor, Gemini, and other MCP clients.

Data Isolation

Strict tenant separation. Your data is never mixed with others or used for training.

Blazing Fast

HNSW indexing for sub-millisecond semantic search. Built on Fastify for minimal latency.

Simple API

Two endpoints: ingest and query. No complex configuration or ML expertise required.

Usage Analytics

Track queries, monitor token usage, and optimize your AI's memory consumption.

Model Context Protocol

Connect any MCP-compatible AI to your knowledge base

Available Tools

search_knowledge_base

Search for relevant documents by semantic similarity. Returns the most relevant chunks from your knowledge base.

add_memory

Store new content in the knowledge base. Content is automatically chunked, embedded, and indexed.

Supported Clients

Claude Desktop- Anthropic's desktop app
Claude CLI- Command-line interface
Cursor IDE- AI-first code editor
Gemini CLI- Google's AI assistant
Cline- VS Code AI extension
Any MCP Client- SSE or Stdio transport