@kronvex/mcp
v1.2.0
Published
Kronvex MCP server — persistent memory tools for AI agents
Downloads
52
Maintainers
Readme
@kronvex/mcp
MCP server for Kronvex — persistent memory for AI agents.
Exposes three tools to any MCP-compatible client (Claude Desktop, Cursor, Cline, Windsurf, Copilot...):
| Tool | Description |
|------|-------------|
| remember | Store a memory for an agent |
| recall | Semantic search over stored memories |
| inject_context | Build a context block from relevant memories |
Setup
The fastest way is the auto-wizard:
npx @kronvex/setupIt detects your MCP client config and injects the server automatically.
Manual config
Add this to your MCP client config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"kronvex": {
"command": "npx",
"args": ["-y", "@kronvex/mcp"],
"env": {
"KRONVEX_API_KEY": "kv-your-api-key",
"KRONVEX_AGENT_ID": "your-agent-uuid"
}
}
}
}Get your API key at kronvex.io.
