# AI Cortex Storage MCP server

Persistent cloud memory for AI agents. Store and search key-value memories across sessions.

## Links
- Registry page: https://www.getdrio.com/mcp/dev-aic0rt3x-memory-mcp

## Install
- Endpoint: https://memory.aic0rt3x.dev/mcp
- Auth: Auth required by registry metadata

## Setup notes
- Remote header: Authorization (required; secret)
- The upstream registry signals required auth or secrets.
- Remote endpoint: https://memory.aic0rt3x.dev/mcp
- Header: Authorization

## Tools
- get_memory - Retrieve a stored value by namespace and key. Endpoint: https://memory.aic0rt3x.dev/mcp
- put_memory - Store a value with optional tags, priority, and storage duration in months (default 1). value_json must be ≤ 1 MB. On overwrite, the existing expiry is scaled by the KB size ratio of old to new value. Endpoint: https://memory.aic0rt3x.dev/mcp
- delete_memory - Delete a stored value. Endpoint: https://memory.aic0rt3x.dev/mcp
- list_keys - List keys in a namespace with metadata (created_at, updated_at, updated_count, ttl, priority, last_modified_key_id). Returns up to 1000 keys sorted by recency. Expired keys are automatically excluded. Endpoint: https://memory.aic0rt3x.dev/mcp
- top_memories - Return the top N highest-priority non-expired keys in a namespace, ordered by priority descending. Useful for loading the most important context when space is limited. Maximum n is 1000. Endpoint: https://memory.aic0rt3x.dev/mcp
- list_namespaces - List all namespaces for this account. Endpoint: https://memory.aic0rt3x.dev/mcp
- search_by_tag - Find (namespace, key) pairs with a given tag. Returns up to 1000 results. Endpoint: https://memory.aic0rt3x.dev/mcp
- get_account - Get account status, credit balance, and available credits. Endpoint: https://memory.aic0rt3x.dev/mcp
- list_api_keys - List all API keys on this account. Endpoint: https://memory.aic0rt3x.dev/mcp
- create_api_key - Create a new live API key. Only available for active accounts. The key is shown once — store it immediately. Endpoint: https://memory.aic0rt3x.dev/mcp
- revoke_api_key - Revoke an API key by ID. The key stops working immediately. Endpoint: https://memory.aic0rt3x.dev/mcp
- list_payments - List payment history for this account. Endpoint: https://memory.aic0rt3x.dev/mcp
- settle_balance - Charges the saved payment method to settle your outstanding balance. Requires explicit user approval before running. For trial accounts, returns the activation URL instead. Minimum charge: $5. Endpoint: https://memory.aic0rt3x.dev/mcp
- submit_exit_feedback - Submit feedback when a trial ends without activation. Free to call — no credits charged. Only the first submission per account is recorded; duplicates are silently ignored. Call this when the user declines to activate or the trial is exhausted. Endpoint: https://memory.aic0rt3x.dev/mcp
- submit_feature_request - Submit a feature request or product feedback. Charged at storage rate: ceil_kb(description_length) × 100 credits per KB. Available to trial and active accounts alike. Endpoint: https://memory.aic0rt3x.dev/mcp

## Resources
Not captured

## Prompts
- save_context - Summarize the current conversation and store it as a memory. Arguments: namespace, key, tags
- load_context - Load the most important memories from a namespace before responding. Arguments: namespace, n
- search_context - Find memories by tag and incorporate them into your response. Arguments: tag
- onboard_agent - Set up memory namespaces and store initial context for a new agent session. Arguments: agent_name, project
- recall_and_respond - Load relevant context, answer the user's question, then store any new knowledge learned. Arguments: namespace, question
- daily_briefing - Load top memories across key namespaces and produce a structured daily summary. Arguments: namespaces
- memory_audit - List all namespaces, review stored memories, and identify stale or low-priority entries to clean up.
- project_handoff - Store a structured snapshot of the current project state so another agent or future session can continue seamlessly. Arguments: namespace, project
- tag_taxonomy - Search across a set of tags and produce a structured map of what memories are stored under each. Arguments: tags
- learn_and_store - Extract key facts from new information and store each as a separate memory with appropriate tags and priority. Arguments: namespace, information
- connect_external_agent - Create a new API key for an external agent and output the configuration needed to connect it to this memory store. Arguments: agent_label

## Metadata
- Owner: dev.aic0rt3x.memory
- Version: 1.0.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Apr 9, 2026
- Source: https://registry.modelcontextprotocol.io
