Kronvex
Kronvex — EU-native Speicher-API für KI-Agenten
Persistenter, semantisch durchsuchbarer Speicher. Drei Endpunkte. DSGVO-konform. Daten bleiben in Europa.
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.
Related MCP server: Mnemoverse Memory
Leistung
Endpunkt | p50 | p99 |
| <30ms | <180ms |
| <45ms | <280ms |
| <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 kronvexfrom 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 kronveximport { 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 --buildAPI verfügbar unter http://localhost:8000 · Dokumentation unter http://localhost:8000/docs
Endpunkte
Methode | Endpunkt | Beschreibung |
|
| Kostenlosen API-Schlüssel erhalten |
|
| Agent erstellen |
|
| Ihre Agenten auflisten |
|
| Erinnerung speichern |
|
| Semantische Suche über Erinnerungen |
|
| Kontextblock abrufen |
|
| Erinnerung löschen |
|
| 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
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Alicense-qualityCmaintenancePersistent memory for AI agents. Store and semantically search memories via REST API or MCP. Free tier available.MIT
- AlicenseAqualityAmaintenancePersistent long-term memory for AI agents — semantic recall across Claude, Cursor, ChatGPT & MCP.1273517MIT

LoreConvoofficial
AlicenseAqualityBmaintenancePersistent memory layer for MCP-compatible AI agents. Implements save/recall/search over a local SQLite session store via 14 MCP tools. Auto-loads relevant context at session start. No cloud dependency. Works with Claude, Cursor, Codex, Hermes Agent. Free (50 sessions) / Pro ($8/mo).3310Business Source 1.1- Flicense-qualityDmaintenancePersistent memory server for AI assistants with semantic search and three-layer context (global, project, personality). Works with MCP-compatible AI tools like Claude Code, Cursor, Continue, Cline, and more.1
Related MCP Connectors
Hosted memory for AI agents that learns and forgets — one key across Claude, Cursor & ChatGPT.
Persistent memory for AI agents — verbatim conversations, searchable by meaning.
Universal memory for AI agents and tools. Save, organize and search context anywhere.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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