MCP Hub
Back to servers

memory

Persistent memory for AI assistants. Store, search, and recall across sessions.

Registry
Updated
Feb 28, 2026

Quick Install

npx -y velixar-mcp-server

Velixar MCP Server

npm License

MCP server that gives any AI assistant persistent memory via Velixar. Works with any Model Context Protocol-compatible client — Claude Desktop, Kiro, Cursor, Windsurf, Continue, or any MCP-enabled tool.

What It Does

Your AI assistant forgets everything between sessions. This server fixes that. It connects to Velixar's memory API and exposes 5 tools that let your assistant store, search, list, update, and delete memories that persist across conversations.

Setup

  1. Get an API key at velixarai.com/settings/api-keys

  2. Install:

npm install -g velixar-mcp-server
  1. Add to your MCP client config:

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "velixar": {
      "command": "velixar-mcp-server",
      "env": {
        "VELIXAR_API_KEY": "vlx_your_key_here"
      }
    }
  }
}

Kiro CLI (~/.kiro/settings/mcp.json):

{
  "mcpServers": {
    "velixar": {
      "command": "velixar-mcp-server",
      "env": {
        "VELIXAR_API_KEY": "vlx_your_key_here"
      }
    }
  }
}

Cursor (.cursor/mcp.json in your project):

{
  "mcpServers": {
    "velixar": {
      "command": "velixar-mcp-server",
      "env": {
        "VELIXAR_API_KEY": "vlx_your_key_here"
      }
    }
  }
}
  1. Restart your AI assistant

Tools

ToolDescription
velixar_storeStore a memory with optional tags and tier
velixar_searchSemantic search across memories
velixar_listBrowse memories with pagination
velixar_updateEdit an existing memory
velixar_deleteDelete a memory by ID

Memory Tiers

TierNameUse Case
0PinnedCritical facts, never expire
1SessionCurrent conversation context
2SemanticLong-term memories (default)
3OrganizationShared team knowledge

Environment Variables

VariableRequiredDescription
VELIXAR_API_KEYYesYour Velixar API key
VELIXAR_API_URLNoCustom API endpoint
VELIXAR_USER_IDNoUser ID for memory scoping (default: kiro-cli)

Example

Once configured, your AI assistant can:

You: Remember that our production database is on us-east-1 and staging is us-west-2
Assistant: ✓ Stored memory

You: Which region is our staging database in?
Assistant: Based on my memory, your staging database is in us-west-2.

Memories persist across sessions, restarts, and even different machines — as long as they use the same API key.

Related

License

MIT

Reviews

No reviews yet

Sign in to write a review