# Memory MCP Server

MemBridge Memory MCP Server allows you to share your memory across multiple AI tools like Claude, ChatGPT, Cursor, and more. You save information once, and it becomes accessible from any AI tool you …

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add membridge/membridge

# Browse available tools
npx -y @smithery/cli@latest tool list membridge/membridge

# Get full schema for a tool
npx -y @smithery/cli@latest tool get membridge/membridge MemBridge_list_records

# Call a tool
npx -y @smithery/cli@latest tool call membridge/membridge MemBridge_list_records '{}'
```

## Direct MCP Connection

Endpoint: `https://membridge--membridge.run.tools`

## Tools (5)

- `MemBridge_list_records` — Retrieve a comprehensive list of all MemBridge Memory Records stored for the authenticated user. MemBridge Memory Recor…
- `MemBridge_create_record` — Create and save a new MemBridge Memory Record when the user explicitly requests to save information for future referenc…
- `MemBridge_update_record` — Update an existing MemBridge Memory Record's content and title while preserving the original creation timestamp. The up…
- `MemBridge_retrieve_record` — Retrieve the full content and metadata of a specific MemBridge Memory Record by its ID. MemBridge Memory Records contai…
- `MemBridge_delete_record` — Permanently delete a specific MemBridge Memory Record by its ID. This action is irreversible and will completely remove…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get membridge/membridge <tool-name>
```

## Resources

- `membridge://memory/a200ab51-0b96-4860-a5b6-bf443cf3e865` — Access individual memory records by ID

## Prompts (2)

- `list-memories` — List all my saved memories
- `save-memory` — Save information to MemBridge
