Skip to main content
Glama

Kronvex — EU-native Speicher-API für KI-Agenten

Persistenter, semantisch durchsuchbarer Speicher. Drei Endpunkte. DSGVO-konform. Daten bleiben in Europa.

PyPI npm License: MIT EU Frankfurt Uptime


Warum Kronvex?

Jedes Mal, wenn ein Benutzer eine neue Sitzung mit Ihrem KI-Agenten beginnt, fängt dieser bei Null an. Kein Kontext, keine Historie, keine Benutzerpräferenzen. Am Ende fügen Sie ganze Gesprächsverläufe in jeden Prompt ein – teuer, langsam und durch das Kontextfenster begrenzt.

Kronvex gibt Ihrem Agenten persistentes, semantisch durchsuchbares Gedächtnis über Sitzungen hinweg. Speichern Sie Interaktionen, rufen Sie relevanten Kontext nach Bedeutung ab, fügen Sie vor jedem LLM-Aufruf einen gebrauchsfertigen Kontextblock ein – und bewahren Sie alle Daten in Europa auf.


Leistung

Endpunkt

p50

p99

/remember

<30ms

<180ms

/recall

<45ms

<280ms

/inject-context

<55ms

<320ms

99,9% Verfügbarkeit · EU Frankfurt · DSGVO-konform · pgvector Kosinus-Ähnlichkeit · 1536-dim Embeddings


Schnellstart

1. Kostenlosen API-Schlüssel erhalten

curl -X POST https://api.kronvex.io/auth/demo \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Alice",
    "email": "alice@company.com",
    "usecase": "Customer support bot with memory"
  }'
{
  "full_key": "kv-xxxxxxxxxxxxxxxx",
  "agent_id": "uuid-of-your-first-agent",
  "memory_limit": 100,
  "message": "Ready! Your API key and first agent are set up."
}

2. Eine Erinnerung speichern

curl -X POST https://api.kronvex.io/api/v1/agents/{agent_id}/remember \
  -H "X-API-Key: kv-xxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{"content": "Alice is a Premium customer since January 2023."}'

3. Kontext vor jedem LLM-Aufruf einfügen

curl -X POST https://api.kronvex.io/api/v1/agents/{agent_id}/inject-context \
  -H "X-API-Key: kv-xxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{"message": "I still have that billing issue"}'
{
  "context_block": "[KRONVEX CONTEXT]\n- Alice is a Premium customer since Jan 2023 (similarity: 0.94)",
  "memories_used": 1
}

SDKs

Python

pip install kronvex
from kronvex import Kronvex

kx = Kronvex("kv-your-api-key")
agent = kx.agent("your-agent-id")

await agent.remember("User prefers concise answers")
context = await agent.inject_context("How should I format this?")

Node.js / TypeScript

npm install kronvex
import { Kronvex } from "kronvex";

const kx = new Kronvex("kv-your-api-key");
const agent = kx.agent("your-agent-id");

await agent.remember("User prefers concise answers");
const context = await agent.injectContext("How should I format this?");

MCP (Claude Desktop)

{
  "mcpServers": {
    "kronvex": {
      "command": "npx",
      "args": ["kronvex-mcp"],
      "env": { "KRONVEX_API_KEY": "kv-your-api-key" }
    }
  }
}

Python SDK auf PyPI · Node SDK auf npm


Funktionsweise

Erinnerungen werden nach einem zusammengesetzten Konfidenzwert bewertet:

confidence = similarity × 0.6 + recency × 0.2 + frequency × 0.2
  • Ähnlichkeit: pgvector Kosinus-Ähnlichkeit bei 1536-dim OpenAI Embeddings

  • Aktualität: Sigmoid mit 30-Tage-Wendepunkt

  • Häufigkeit: Logarithmisch skalierte Zugriffszahl


Selbst-Hosting

# Requires Docker
cp .env.example .env
# Edit .env with your OPENAI_API_KEY and DATABASE_URL
docker-compose up --build

API verfügbar unter http://localhost:8000 · Dokumentation unter http://localhost:8000/docs


Endpunkte

Methode

Endpunkt

Beschreibung

POST

/auth/demo

Kostenlosen API-Schlüssel erhalten

POST

/api/v1/agents

Agent erstellen

GET

/api/v1/agents

Ihre Agenten auflisten

POST

/api/v1/agents/{id}/remember

Erinnerung speichern

POST

/api/v1/agents/{id}/recall

Semantische Suche über Erinnerungen

POST

/api/v1/agents/{id}/inject-context

Kontextblock abrufen

DELETE

/api/v1/agents/{id}/memories/{mid}

Erinnerung löschen

GET

/health

Gesundheitsprüfung

Vollständige interaktive Dokumentation: api.kronvex.io/docs


Preisgestaltung

Plan

Preis

Agenten

Erinnerungen

Kostenlos

Kostenlos

1

100

Builder

€29/Mon

5

20.000

Startup

€99/Mon

15

75.000

Business

€349/Mon

50

500.000

Enterprise

Individuell

Unbegrenzt

Unbegrenzt

Vollständige Preisliste ansehen


Mitwirken

Siehe CONTRIBUTING.md.


Gebaut in Paris · kronvex.io · hello@kronvex.io

Install Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - A tier

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Daftgoldens/Kronvex'

If you have feedback or need assistance with the MCP directory API, please join our Discord server