Skip to main content
Glama

What is this?

This MCP server connects your AI assistant to Memphora, giving it the ability to:

  • Remember information across conversations

  • Search your personal knowledge base

  • Extract insights from conversations automatically

  • Recall your preferences, facts, and context

Related MCP server: AGI MCP Server

Quick Start

1. Install

# Using pip
pip install memphora-mcp

# Or using uvx (recommended for Claude Desktop)
uvx memphora-mcp

2. Get Your API Key

  1. Go to memphora.ai/dashboard

  2. Create an account or sign in

  3. Copy your API key from the dashboard

3. Configure Claude Desktop

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "memphora": {
      "command": "uvx",
      "args": ["memphora-mcp"],
      "env": {
        "MEMPHORA_API_KEY": "your_api_key_here",
        "MEMPHORA_USER_ID": "your_unique_user_id"
      }
    }
  }
}

4. Restart Claude Desktop

Close and reopen Claude Desktop. You should see the Memphora tools available!

Usage Examples

Storing Memories

Just tell Claude something about yourself:

You: "I work at Google as a software engineer"
Claude: [stores memory] "Got it! I'll remember that you work at Google as a software engineer."

You: "My favorite programming language is Python"
Claude: [stores memory] "Noted! I'll remember that Python is your favorite programming language."

Recalling Memories

Ask Claude about things you've told it before:

You: "Where do I work?"
Claude: [searches memories] "You work at Google as a software engineer."

You: "What programming languages do I like?"
Claude: [searches memories] "Your favorite programming language is Python."

Automatic Context

Claude will automatically search your memories when relevant:

You: "Can you help me with some code?"
Claude: [searches memories for context]
        "Sure! Since you prefer Python and work at Google, I'll write this in Python 
         following Google's style guide..."

Available Tools

Tool

Description

memphora_search

Search memories for relevant information

memphora_store

Store new information for future recall

memphora_extract_conversation

Extract memories from a conversation

memphora_list_memories

List all stored memories

memphora_delete

Delete a specific memory

Configuration Options

Environment Variable

Description

Default

MEMPHORA_API_KEY

Your Memphora API key

Required

MEMPHORA_USER_ID

Unique identifier for your memories

mcp_default_user

Using with Other MCP Clients

Cursor

Add to your Cursor settings:

{
  "mcp": {
    "servers": {
      "memphora": {
        "command": "uvx",
        "args": ["memphora-mcp"],
        "env": {
          "MEMPHORA_API_KEY": "your_api_key_here"
        }
      }
    }
  }
}

Windsurf

Add to your Windsurf MCP configuration:

{
  "mcpServers": {
    "memphora": {
      "command": "python",
      "args": ["-m", "memphora_mcp"],
      "env": {
        "MEMPHORA_API_KEY": "your_api_key_here"
      }
    }
  }
}

Development

Running Locally

# Clone the repo
git clone https://github.com/Memphora/memphora-mcp.git
cd memphora-mcp

# Install dependencies
pip install -e ".[dev]"

# Set your API key
export MEMPHORA_API_KEY="your_key"

# Run the server
python -m memphora_mcp

Testing

pytest tests/

Privacy & Security

  • Your memories are stored securely in Memphora's cloud

  • Each user has isolated memory storage

  • API keys are stored locally on your machine

  • All communication is encrypted via HTTPS

Support

License

MIT License - see LICENSE for details.

Available Tools

5 tools
memphora_deleteA

Delete a specific memory by its ID. Use this when the user wants to forget something or correct incorrect information.

ParametersJSON Schema
NameRequiredDescriptionDefault
memory_idYesThe ID of the memory to delete

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. While it correctly indicates this is a destructive operation ('Delete'), it lacks important details such as whether deletion is permanent, what permissions are required, if there are confirmation prompts, or what happens to associated data. For a mutation tool with zero annotation coverage, this is insufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences with zero waste. The first sentence states the core functionality, and the second provides usage context, making it efficiently front-loaded and appropriately sized for this tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a destructive mutation tool with no annotations and no output schema, the description is incomplete. It lacks critical behavioral details (e.g., permanence, error handling) and does not describe what the tool returns upon success or failure, leaving significant gaps for an AI agent to understand the tool fully.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with the single parameter 'memory_id' fully documented in the schema. The description adds no additional parameter information beyond what the schema provides, so it meets the baseline score of 3 where the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Delete') and the resource ('a specific memory by its ID'), making the purpose explicit. It distinguishes this tool from its siblings (list, search, store, extract) by focusing on deletion rather than retrieval or creation operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use this tool ('when the user wants to forget something or correct incorrect information'), which helps differentiate it from read-only siblings. However, it does not explicitly state when NOT to use it or name specific alternatives for related tasks.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memphora_extract_conversationB

Extract and store memories from a conversation. Use this to save important information from a longer discussion. The system will automatically identify and store relevant facts.

ParametersJSON Schema
NameRequiredDescriptionDefault
conversationYesList of messages in the conversation

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions that 'the system will automatically identify and store relevant facts', which adds some context about automation, but doesn't cover critical aspects like whether this is a read/write operation (implied write from 'store'), permission requirements, rate limits, or what happens if extraction fails. For a tool that appears to perform memory storage with zero annotation coverage, this is inadequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately concise with two sentences that directly address purpose and automation. It's front-loaded with the core function, though the second sentence about automatic identification could be integrated more tightly. There's minimal waste, but slight room for improvement in flow.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations, no output schema, and a tool that performs memory extraction and storage (implied mutation), the description is incomplete. It lacks details on what 'memories' entail, how they're stored, error handling, or return values. For a tool with potential side effects and no structured safety hints, this leaves significant gaps for an AI agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with the single parameter 'conversation' fully documented in the schema as 'List of messages in the conversation'. The description doesn't add any meaningful parameter semantics beyond what the schema provides, such as format examples or constraints on conversation length. Baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'extract and store' and the resource 'memories from a conversation', with the specific purpose of 'saving important information from a longer discussion'. However, it doesn't explicitly differentiate from sibling tools like memphora_store, which might also store memories but potentially from different sources.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context ('from a longer discussion') and suggests when to use it ('to save important information'), but doesn't provide explicit guidance on when to use this vs. alternatives like memphora_store or memphora_search, nor does it mention any exclusions or prerequisites for usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memphora_list_memoriesB

List all stored memories for the user. Use this to see what information has been remembered.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of memories to return (default: 20)

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions listing memories but doesn't describe key behaviors such as pagination (implied by the 'limit' parameter), sorting order, whether it returns all fields or a summary, or any rate limits or authentication requirements. This leaves significant gaps for an agent to understand how to use it effectively.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized with two concise sentences that directly state the purpose and usage. It's front-loaded with the core functionality ('List all stored memories for the user'), and the second sentence adds practical guidance. There's no wasted text, making it efficient for an agent to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of a list operation with no annotations and no output schema, the description is incomplete. It doesn't explain what the return values look like (e.g., format, fields), behavioral aspects like pagination or sorting, or how it interacts with siblings. For a tool that lists user data, more context is needed to ensure the agent can use it correctly without relying on trial and error.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with the 'limit' parameter well-documented in the schema itself (including type, description, and default). The description doesn't add any meaning beyond what the schema provides, as it doesn't mention parameters at all. With high schema coverage, the baseline score of 3 is appropriate, as the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('List') and resource ('all stored memories for the user'), making it easy to understand what the tool does. It distinguishes from siblings by focusing on listing rather than deleting, extracting, searching, or storing memories. However, it doesn't explicitly differentiate from 'memphora_search' which might also list memories but with filtering.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage by stating 'Use this to see what information has been remembered,' which suggests it's for viewing stored memories. However, it doesn't provide explicit guidance on when to use this tool versus alternatives like 'memphora_search' (which might list with filters) or 'memphora_extract_conversation' (which might list conversation-specific memories). No exclusions or prerequisites are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memphora_storeA

Store important information about the user for future recall. Use this when the user shares personal details, preferences, facts about themselves, or explicitly asks you to remember something. Examples: 'I work at Google', 'My favorite color is blue', 'Remember that I'm allergic to peanuts'

ParametersJSON Schema
NameRequiredDescriptionDefault
contentYesThe information to remember (should be a complete, self-contained fact)
categoryNoOptional category (e.g., 'preference', 'work', 'health', 'relationship')

TDQS

A4.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It describes the tool's purpose and usage context but lacks details on behavioral traits such as storage limitations, persistence duration, privacy implications, or error handling. The description doesn't contradict any annotations, but it misses key operational details for a storage tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose, followed by usage guidelines and examples. Every sentence adds value without redundancy, making it efficient and well-structured for quick understanding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (storage operation with 2 parameters) and no output schema, the description covers purpose and usage well but lacks details on return values or behavioral aspects like success confirmation. It's mostly complete but could benefit from information on what happens after storage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, providing clear documentation for both parameters. The description adds value by emphasizing that the content should be 'a complete, self-contained fact' and giving examples that illustrate the semantics, though it doesn't explicitly detail parameter usage beyond what the schema covers.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states the verb ('Store') and resource ('important information about the user for future recall'), making the purpose specific and clear. It distinguishes this tool from its siblings by focusing on storing user information, unlike deletion, extraction, listing, or searching operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance on when to use this tool ('when the user shares personal details, preferences, facts about themselves, or explicitly asks you to remember something') and includes concrete examples. This clearly differentiates it from alternative tools like memphora_search or memphora_list_memories.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updates
    • First observedmemphora_delete
    • First observedmemphora_extract_conversation
    • First observedmemphora_list_memories
    • First observedmemphora_search
    • First observedmemphora_store

TDQS

A4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: delete removes memories, extract processes conversations, list shows all memories, search finds specific memories, and store adds new memories. The descriptions reinforce these distinct roles, making misselection unlikely.

Naming Consistency5/5

All tools follow a consistent 'memphora_verb_noun' pattern (e.g., memphora_delete, memphora_extract_conversation). This uniform naming convention makes the tool set predictable and easy to understand at a glance.

Tool Count5/5

With 5 tools, this server is well-scoped for a memory management system. Each tool earns its place by covering core operations (store, search, list, delete, and conversation extraction), avoiding bloat while providing complete functionality.

Completeness5/5

The tool set offers complete CRUD/lifecycle coverage for the memory domain: store (create), search and list (read), delete (delete), and extract_conversation (a specialized create/update). There are no obvious gaps, enabling agents to handle all expected workflows without dead ends.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to store and retrieve persistent memories with a web management interface. Supports creating, searching, and managing memories through natural language commands or a visual web dashboard.
    12
    1
    MIT
  • F
    license
    B
    quality
    D
    maintenance
    Enables persistent memory for AI systems by providing tools for episodic, semantic, and procedural data storage through a vector-and-graph-enhanced database. It allows models to maintain long-term continuity using similarity search, thematic clustering, and identity tracking.
    24
    1
    -
  • A
    license
    A
    quality
    C
    maintenance
    Provides persistent memory capabilities for AI assistants, enabling storage, recall, and analysis of information across conversations with intelligent memory management.
    25
    92
    MIT

Latest Blog Posts

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/Memphora/memphora-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server