Kronvex
Kronvex — API de memoria nativa de la UE para agentes de IA
Memoria persistente con búsqueda semántica. Tres endpoints. Conforme al RGPD. Los datos permanecen en Europa.
¿Por qué Kronvex?
Cada vez que un usuario abre una nueva sesión con tu agente de IA, este empieza desde cero. Sin contexto, sin historial, sin preferencias de usuario. Terminas inyectando historiales de conversación completos en cada prompt: es costoso, lento y limitado por la ventana de contexto.
Kronvex le da a tu agente una memoria persistente con búsqueda semántica entre sesiones. Almacena interacciones, recupera contexto relevante por significado, inyecta un bloque de contexto listo para usar antes de cada llamada al LLM, y mantén todos los datos en Europa.
Related MCP server: Mnemoverse Memory
Rendimiento
Endpoint | p50 | p99 |
| <30ms | <180ms |
| <45ms | <280ms |
| <55ms | <320ms |
99.9% de tiempo de actividad · Fráncfort, UE · Conforme al RGPD · Similitud de coseno pgvector · Embeddings de 1536 dimensiones
Inicio rápido
1. Obtén una clave API gratuita
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. Almacena un recuerdo
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. Inyecta contexto antes de cada llamada al LLM
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" }
}
}
}→ SDK de Python en PyPI · SDK de Node en npm
Cómo funciona
Los recuerdos se clasifican mediante una puntuación de confianza compuesta:
confidence = similarity × 0.6 + recency × 0.2 + frequency × 0.2Similitud: similitud de coseno pgvector en embeddings de OpenAI de 1536 dimensiones
Recencia: sigmoide con punto de inflexión de 30 días
Frecuencia: recuento de acceso en escala logarítmica
Autoalojamiento
# Requires Docker
cp .env.example .env
# Edit .env with your OPENAI_API_KEY and DATABASE_URL
docker-compose up --buildAPI disponible en http://localhost:8000 · Documentación en http://localhost:8000/docs
Endpoints
Método | Endpoint | Descripción |
|
| Obtener una clave API gratuita |
|
| Crear un agente |
|
| Listar tus agentes |
|
| Almacenar un recuerdo |
|
| Búsqueda semántica en recuerdos |
|
| Obtener bloque de contexto |
|
| Eliminar un recuerdo |
|
| Comprobación de estado |
Documentación interactiva completa: api.kronvex.io/docs
Precios
Plan | Precio | Agentes | Recuerdos |
Free | Gratis | 1 | 100 |
Builder | 29€/mes | 5 | 20.000 |
Startup | 99€/mes | 15 | 75.000 |
Business | 349€/mes | 50 | 500.000 |
Enterprise | Personal | Ilimitado | Ilimitado |
Contribución
Consulta CONTRIBUTING.md.
Creado en París · 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