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

# Claude

> Using MemoryPlugin with Claude AI

export const ArticleInfo = ({author, lastUpdated}) => {
  const authorAvatar = author === 'asad' ? '/images/author-asad.jpeg' : null;
  const formatDate = dateInput => {
    if (!dateInput) return '';
    if (typeof dateInput === 'string' && !dateInput.match(/^\d{4}-\d{2}-\d{2}/)) {
      return dateInput;
    }
    try {
      const date = new Date(dateInput);
      const now = new Date();
      const diffTime = Math.abs(now - date);
      const diffDays = Math.floor(diffTime / (1000 * 60 * 60 * 24));
      if (diffDays === 0) return 'today';
      if (diffDays === 1) return '1 day ago';
      if (diffDays < 7) return `${diffDays} days ago`;
      if (diffDays < 30) return `${Math.ceil(diffDays / 7)} week${Math.ceil(diffDays / 7) > 1 ? 's' : ''} ago`;
      if (diffDays < 365) return `${Math.ceil(diffDays / 30)} month${Math.ceil(diffDays / 30) > 1 ? 's' : ''} ago`;
      return `${Math.ceil(diffDays / 365)} year${Math.ceil(diffDays / 365) > 1 ? 's' : ''} ago`;
    } catch {
      return dateInput;
    }
  };
  return <div style={{
    display: "flex",
    alignItems: "center",
    gap: "8px",
    marginBottom: "16px",
    padding: "8px 12px",
    backgroundColor: "var(--ifm-color-emphasis-100)",
    borderRadius: "6px",
    fontSize: "14px",
    color: "var(--ifm-color-content-secondary)",
    border: "1px solid var(--ifm-color-emphasis-200)",
    opacity: "0.8"
  }}>
      <div style={{
    width: "40px",
    height: "40px",
    borderRadius: "50%",
    background: authorAvatar || "linear-gradient(45deg, #4F46E5, #7C3AED)",
    display: "flex",
    alignItems: "center",
    justifyContent: "center",
    color: "white",
    fontWeight: "bold",
    fontSize: "18px"
  }}>
        {authorAvatar ? <img src={authorAvatar} alt={author} style={{
    width: "100%",
    height: "100%",
    borderRadius: "50%"
  }} /> : author?.[0]?.toUpperCase()}
      </div>
      <div>
        <div style={{
    fontWeight: "400",
    fontSize: "14px"
  }}>Written by <span style={{
    fontWeight: "600"
  }}>{author}</span></div>
        <div style={{
    fontSize: "14px"
  }}>Last updated <span style={{
    fontWeight: "600"
  }}>{formatDate(lastUpdated)}</span></div>
      </div>
    </div>;
};

<ArticleInfo author="asad" lastUpdated="2026-03-24" />

Use MemoryPlugin with Claude AI assistant at [claude.ai](https://claude.ai).

## How to Use

### Remote MCP Server (Recommended)

The best way to use MemoryPlugin with Claude — works on desktop, mobile, and web with no install required:

1. Go to Claude Settings → Integrations → Add MCP Server
2. Add the [Remote MCP Server](/integrations/remote-mcp-server) URL
3. Memories load automatically in new chats — including on the Claude mobile app

### Browser Extension (Recommended add-on)

Add the browser extension alongside Remote MCP for **live chat history sync**:

1. Install the [MemoryPlugin Browser Extension](/integrations/browser-extension)
2. Go to [claude.ai](https://claude.ai)
3. Your Claude conversations are automatically synced to MemoryPlugin

### Local MCP Server

For Claude Desktop and other MCP clients that prefer a local process:

1. Install [Claude Desktop](https://claude.ai/download)
2. Configure the [MCP Server](/integrations/mcp-server) (local)
3. Memories load automatically in new chats

### Chat History Import

Import your Claude conversation history into MemoryPlugin:

* **File upload**: Export your Claude data and upload the conversations file
* **Online sync**: Sync conversations directly from the browser extension

Once imported, your past Claude conversations become searchable and available as context across all your AI tools. See the [Chat History](/features/chat-history/introduction) docs for more details.

## Next Steps

<CardGroup cols={2}>
  <Card title="Browser Extension Setup" icon="browser" href="/integrations/browser-extension">
    Quick setup guide
  </Card>

  <Card title="MCP Server Setup" icon="server" href="/integrations/mcp-server">
    For Claude Desktop and MCP clients
  </Card>

  <Card title="Remote MCP Server" icon="cloud" href="/integrations/remote-mcp-server">
    Hosted — no install needed
  </Card>

  <Card title="Chat History" icon="clock-rotate-left" href="/features/chat-history/introduction">
    Import and search your conversations
  </Card>
</CardGroup>
