> ## Documentation Index
> Fetch the complete documentation index at: https://docs.membridge.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Features

> Discover the 5 simple yet powerful features of MemBridge Memory MCP Server

## Simple by Design

MemBridge intentionally offers only 5 core functions. We've eliminated complex features to ensure anyone can use it without technical expertise or reading lengthy documentation.

## The 5 Core Functions

MemBridge provides exactly 5 functions:

* **Save Memory** - Store important information for later use
* **Retrieve Memory** - Search and find your saved memories
* **Update Memory** - Keep your information current
* **Delete Memory** - Remove memories you no longer need
* **List All Memories** - View and manage all your saved memories

## How It Works

### Cross-Tool Memory Sharing

The key innovations of MemBridge are **cross-tool compatibility** and **cross-session explicitness**. Unlike native AI memory features that only work within a single service, MemBridge enables all your AI tools to access the same memories.

Moreover, even within the same AI tool, when you work across multiple chat sessions, MemBridge provides **explicit, lossless information transfer**. Native memory features rely on automatic search, which often loses important details. MemBridge allows you to save specific information and retrieve it exactly as stored—no ambiguity, no information loss.

<Steps>
  <Step title="Save Once">
    Save a memory in any connected AI tool or through the web dashboard
  </Step>

  <Step title="Access Everywhere">
    The same memory becomes instantly available in all your other AI tools
  </Step>

  <Step title="Stay in Sync">
    Updates or deletions are reflected across all tools automatically
  </Step>
</Steps>

### Example Workflow

<AccordionGroup>
  <Accordion title="Morning: Claude" icon="sunrise">
    You're writing an article in Claude and mention:

    "Remember that I prefer using active voice and keeping sentences under 20 words."

    Claude saves this to MemBridge.
  </Accordion>

  <Accordion title="Afternoon: Cursor" icon="sun">
    You're coding in Cursor and ask:

    "Write a README for this project."

    Cursor retrieves your writing preferences from MemBridge and applies them automatically.
  </Accordion>

  <Accordion title="Evening: ChatGPT" icon="moon">
    You're researching in ChatGPT and ask:

    "Summarize this article following my preferred writing style."

    ChatGPT knows your preferences without you repeating them.
  </Accordion>
</AccordionGroup>

## Memory Management

### Two Ways to Manage Memories

You have full control over your memories through two interfaces:

<Tabs>
  <Tab title="AI Assistant">
    Manage memories through conversation by mentioning MemBridge:

    ```
    "Use MemBridge to remember that I'm working on a Next.js e-commerce project using Stripe for payments."

    "Use MemBridge to check what you know about my current project."

    "Use MemBridge to update my project memory: we switched from Stripe to PayPal."

    "Use MemBridge to forget about my old project."

    "Use MemBridge to show me all my saved memories."
    ```

    Your AI assistant will use the appropriate MemBridge function when you mention it.

    <Tip>It's recommended to explicitly mention "MemBridge" or "use MemBridge" in your requests to ensure your AI uses the MemBridge tools reliably.</Tip>
  </Tab>

  <Tab title="Web Dashboard">
    Manage memories visually through the [dashboard](https://membridge.ai/dashboard):

    * **Create**: Click "New Memory" to add information
    * **View**: See all your memories in one place
    * **Edit**: Click any memory to update its content
    * **Delete**: Remove unwanted memories
    * **Export**: Download all your data

    <Tip>The dashboard is perfect for bulk operations or when you want a visual overview.</Tip>
  </Tab>
</Tabs>

### Memory Structure

Each memory consists of two simple parts:

<CodeGroup>
  ```json Example Memory theme={null}
  {
    "title": "Development Stack",
    "content": "I use Next.js 14, TypeScript, Tailwind CSS, and deploy on Vercel. I prefer functional components with hooks and write tests using Jest and React Testing Library."
  }
  ```

  ```json Another Example theme={null}
  {
    "title": "Dietary Restrictions",
    "content": "Allergic to shellfish. Vegetarian. Prefers spicy food."
  }
  ```
</CodeGroup>

<Note>
  Keep memories concise and focused. One topic per memory makes them easier to retrieve and update.
</Note>

## What Makes MemBridge Different

### Comparison with Native AI Memory

<table>
  <thead>
    <tr>
      <th>Feature</th>
      <th>Claude/ChatGPT Memory</th>
      <th>MemBridge</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>**Cross-tool sharing**</td>
      <td>❌ Limited to one service</td>
      <td>✅ Works across all MCP tools</td>
    </tr>

    <tr>
      <td>**Cross-session explicitness**</td>
      <td>⚠️ Search-based, details get lost</td>
      <td>✅ Explicit save/retrieve, lossless</td>
    </tr>

    <tr>
      <td>**Manual control**</td>
      <td>⚠️ Mostly automatic</td>
      <td>✅ Full control over what's saved</td>
    </tr>

    <tr>
      <td>**Visual management**</td>
      <td>❌ Limited interface</td>
      <td>✅ Full web dashboard</td>
    </tr>

    <tr>
      <td>**Data export**</td>
      <td>✅ Export anytime</td>
      <td>✅ Export anytime</td>
    </tr>

    <tr>
      <td>**Works with Cursor**</td>
      <td>❌ No</td>
      <td>✅ Yes</td>
    </tr>

    <tr>
      <td>**Works with Cline**</td>
      <td>❌ No</td>
      <td>✅ Yes</td>
    </tr>
  </tbody>
</table>

### Why Simple is Better

<CardGroup cols={2}>
  <Card title="No Learning Curve" icon="graduation-cap">
    Five basic operations that everyone understands. Start using immediately without reading documentation.
  </Card>

  <Card title="Fast & Reliable" icon="bolt">
    Simple architecture means faster response times and fewer things that can go wrong.
  </Card>

  <Card title="Easy to Maintain" icon="wrench">
    You can easily understand what's stored and keep your memories organized.
  </Card>

  <Card title="Works for Everyone" icon="users">
    From non-technical users to developers—everyone can use the same simple interface.
  </Card>
</CardGroup>

## Use Cases

### For Everyone

<AccordionGroup>
  <Accordion title="Personal Preferences" icon="user">
    Dietary restrictions, learning style, accessibility needs—save once, respect everywhere.

    **Example**: "Vegetarian, allergic to nuts. Learn best with examples and analogies. Prefer step-by-step explanations."
  </Accordion>

  <Accordion title="Frequent Tasks" icon="list-check">
    Save procedures, workflows, or instructions you reference often.

    **Example**: "My morning routine template, weekly planning process, meeting prep checklist."
  </Accordion>

  <Accordion title="Useful Information" icon="lightbulb">
    Any information you find yourself explaining repeatedly to AI assistants.

    **Example**: "My timezone is EST. I work 9-5 on weekdays. I prefer communication via email for important matters."
  </Accordion>
</AccordionGroup>

### For Content Creators

<AccordionGroup>
  <Accordion title="Writing Style" icon="pen-fancy">
    Define your voice, tone, and preferences. All AI tools will match your style automatically.

    **Example**: "I write in casual, conversational tone. Use active voice, short sentences, and plenty of examples. Avoid jargon."
  </Accordion>

  <Accordion title="Brand Guidelines" icon="palette">
    Save brand voice, terminology, and messaging guidelines. Consistent content across all AI interactions.

    **Example**: "Always use 'customers' not 'users'. Emphasize simplicity and accessibility. Friendly but professional."
  </Accordion>

  <Accordion title="Research Context" icon="book">
    Keep track of ongoing research topics. Continue your research seamlessly across different AI tools.

    **Example**: "Researching AI memory systems: focusing on RAG, vector databases, and semantic search. Interested in practical applications."
  </Accordion>
</AccordionGroup>

### For Developers

<AccordionGroup>
  <Accordion title="Development Environment" icon="code">
    Save your tech stack, coding preferences, and common patterns. Every AI tool you use for coding will understand your setup instantly.

    **Example**: "I use React with TypeScript, prefer functional components, use Tailwind for styling, and deploy on Vercel."
  </Accordion>

  <Accordion title="Current Projects" icon="folder">
    Document project details, architecture decisions, and ongoing work. Switch between Claude for planning, Cursor for coding, and ChatGPT for research—all with full context.

    **Example**: "Working on an e-commerce site with Next.js 14, using Prisma with PostgreSQL, implementing Stripe payments."
  </Accordion>

  <Accordion title="Cross-Session Knowledge Transfer" icon="right-left">
    When working on multiple features in different chat sessions, explicitly save design decisions or implementation details from one session and retrieve them accurately in another.

    **Example**: In Chat A, you discuss and finalize API design patterns. Save them to MemBridge. In Chat B (working on a different feature), retrieve those exact patterns—no details lost to automatic search.
  </Accordion>

  <Accordion title="Code Snippets" icon="code-simple">
    Store frequently used code patterns or configurations. Access them from any AI tool when you need them.

    **Example**: "My standard ESLint config, Next.js middleware pattern, Prisma schema setup."
  </Accordion>
</AccordionGroup>

## Getting Started

Ready to experience cross-tool memory sharing?

<CardGroup cols={2}>
  <Card title="Quick Start" icon="rocket" href="/quickstart">
    Set up MemBridge in 3 minutes
  </Card>

  <Card title="View Pricing" icon="dollar-sign" href="/pricing">
    Choose the right plan for you
  </Card>
</CardGroup>
