> ## 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.

# Can I use MemoryPlugin on my phone?

> Safari on iOS, Quetta on Android, and the dashboard from any mobile browser

export const ArticleInfo = ({author, lastUpdated}) => {
  const authorAvatar = author === 'Alara' ? '/images/author-alara.jpg' : author === 'asad' ? '/images/author-alara.jpg' : 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="Alara" lastUpdated="2026-07-12" />

Yes. The extension runs on iPhone and iPad through Safari, and on Android through the Chromium-based Quetta Browser. The dashboard works in any mobile browser.

## iPhone and iPad

Install the [Safari extension](https://testflight.apple.com/join/3nBR4xdN) (it also works on macOS Safari). Once enabled, you get the same MemoryPlugin panel on supported AI sites as on desktop.

## Android

Chrome for Android does not support extensions, but [Quetta Browser](https://play.google.com/store/apps/details?id=net.quetta.browser) is Chromium-based and does. Install Quetta, then add the MemoryPlugin extension from the [Chrome Web Store](https://chromewebstore.google.com/detail/memoryplugin-long-term-me/iaelpdacgkkhecjoojjgkhiengnbjacd) inside it.

## The dashboard

[memoryplugin.com/dashboard](https://memoryplugin.com/dashboard) works in any mobile browser: view and edit memories, manage buckets, search your chat history, and use Ask.

## No extension needed at all

If installing a mobile extension isn't your thing, two integrations work anywhere you can open the AI's own app or site:

* The [remote MCP server](/integrations/remote-mcp-server) works with Claude's mobile apps.
* The [MemoryPlugin custom GPT](/integrations/custom-gpt) works in ChatGPT's mobile apps.

## Related

<CardGroup cols={2}>
  <Card title="Browser Extension" icon="browser" href="/integrations/browser-extension">
    Installation and browser compatibility
  </Card>

  <Card title="Remote MCP Server" icon="server" href="/integrations/remote-mcp-server">
    Memory in Claude on any device
  </Card>
</CardGroup>
