<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Memexa Knowledge</title>
    <link>https://memexa.ai/en/knowledge</link>
    <atom:link href="https://memexa.ai/en/knowledge/rss.xml" rel="self" type="application/rss+xml"/>
    <description>Guides and fundamentals on AI memory, MCP, and working with your own documents.</description>
    <language>en</language>
    <lastBuildDate>Tue, 18 Aug 2026 07:31:00 GMT</lastBuildDate>
    <item>
      <title>Set up the Memexa MCP server in Claude — step by step</title>
      <link>https://memexa.ai/en/knowledge/claude-mcp</link>
      <guid>https://memexa.ai/en/knowledge/claude-mcp</guid>
      <pubDate>Tue, 18 Aug 2026 07:31:00 GMT</pubDate>
      <category>How-to</category>
      <description>Connect Claude to your own documents in three minutes. Instructions for Claude Desktop and Claude Code, with sources cited down to the page.</description>
      <content:encoded><![CDATA[<p>By the end of this guide, Claude has access to your notes, documents and scans in Memexa and cites the source with every answer. You need one URL and about three minutes.</p>
<h2>What MCP is</h2>
<p>MCP (Model Context Protocol) is the open standard Claude uses to talk to external services. An MCP server provides Claude with tools such as &quot;search my notes&quot; or &quot;read this document&quot;, and Claude calls them on its own when a question fits. More background is in <a href="https://memexa.ai/en/knowledge/what-is-mcp">the MCP fundamentals article</a>; this paragraph is enough for setup.</p>
<h2>Prerequisites</h2>
<ul>
<li>A Memexa account (<a href="https://memexa.ai/en/waitlist">create one free</a>, the Free plan is enough)</li>
<li>Claude Desktop or Claude Code</li>
</ul>
<p>You don&#39;t need API keys or config files. Sign-in happens through OAuth in the browser, and the address is the same for every client:</p>
<pre><code>https://brain.memexa.ai/mcp
</code></pre>
<h2>Connect Claude Desktop</h2>
<ol>
<li>Open <strong>Settings</strong> in Claude Desktop (gear icon, bottom left).</li>
<li>Choose the <strong>Connectors</strong> tab.</li>
<li>Click <strong>Add custom connector</strong>.</li>
<li>Paste <code>https://brain.memexa.ai/mcp</code> as the URL and confirm.</li>
<li>Sign in with your Memexa account in the browser window that opens. The sign-in is permanent.</li>
</ol>
<p>Afterwards, &quot;memexa&quot; appears in your connector list.</p>
<h2>Connect Claude Code</h2>
<p>One command in the terminal:</p>
<pre><code>claude mcp add --transport http --scope user memexa https://brain.memexa.ai/mcp
</code></pre>
<p><code>--scope user</code> makes the connection available in all projects, not just the current folder. On first access the browser opens for sign-in. After that the connection runs in the background.</p>
<h2>Check that it works</h2>
<p>Ask Claude a question only your memory can answer:</p>
<blockquote>
<p>&quot;What do you know about me?&quot;</p>
</blockquote>
<p>If Claude calls tools like <code>search_brain</code> or <code>list_recent</code> and answers with content from your Memexa, the connection is up. In Claude Code, <code>/mcp</code> shows the status of every connected server.</p>
<h2>What Claude can do afterwards</h2>
<p>Claude now remembers things across sessions: say &quot;Remember: release moved to the 14th&quot; and the note is still there next week, in ChatGPT or Cursor too if you connect those as well. Uploaded PDFs and scans go through text recognition automatically; ask Claude about one and the answer names the source, such as &quot;contract, page 4&quot;. New notes also link themselves to existing ones, so Claude can navigate the graph from one piece of information to the next.</p>
<h2>Common problems</h2>
<h3>The connector shows up, but Claude doesn&#39;t use it</h3>
<p>Claude only calls tools when the question sounds like it needs them. Be explicit at first: &quot;Check my Memexa for …&quot;. After the first few hits, Claude starts using the memory unprompted.</p>
<h3>Sign-in fails or hangs</h3>
<p>Usually a browser issue: disable the pop-up blocker, then remove and re-add the connector. There is nothing to enter in Claude itself; sign-in happens entirely in the browser.</p>
<h3>&quot;Server disconnected&quot; in Claude Code</h3>
<p>Run <code>claude mcp list</code>. If memexa shows &quot;failed&quot;, <code>claude mcp remove memexa</code> followed by the <code>claude mcp add</code> from above almost always fixes it. If the error persists, check whether a corporate firewall filters outgoing HTTPS connections.</p>
<h3>Claude can&#39;t find a document</h3>
<p>Freshly uploaded documents need a moment for text recognition and linking. You can see the status in the <a href="https://brain.memexa.ai/dashboard">dashboard</a>. Once the document is marked as processed, Claude finds it.</p>
]]></content:encoded>
    </item>
    <item>
      <title>MCP servers explained: what they do and how to use them</title>
      <link>https://memexa.ai/en/knowledge/mcp-servers</link>
      <guid>https://memexa.ai/en/knowledge/mcp-servers</guid>
      <pubDate>Wed, 12 Aug 2026 09:07:00 GMT</pubDate>
      <category>Fundamentals</category>
      <description>What an MCP server is, which kinds exist, and how to connect one to Claude, ChatGPT or Cursor — with examples and criteria for choosing well.</description>
      <content:encoded><![CDATA[<p>The largest directory alone lists over 9,800 MCP servers — for GitHub, Notion, databases, browsers, file systems, and pretty much anything that is a tool or a data source. If you&#39;re wondering what these servers actually do and which ones you need: that&#39;s what this card is about.</p>
<p>The protocol behind them — MCP, the open standard AI clients use to talk to external services — has <a href="https://memexa.ai/en/knowledge/what-is-mcp">its own article</a>. This one stays on the practical side: the server.</p>
<h2>What an MCP server does</h2>
<p>An MCP server is a service that offers tools to an AI. Each tool is a named capability with a clear job: <em>search my notes</em>, <em>read this file</em>, <em>create a GitHub issue</em>. The client — Claude, ChatGPT, Cursor — receives the list of tools when it connects, and decides on its own when to call which one.</p>
<p>That&#39;s the whole trick. The server doesn&#39;t need to understand AI; it just answers requests. The model doesn&#39;t need to understand the service; it only sees described tools. Which is why the same server works with every client that speaks the protocol.</p>
<h2>Which servers exist</h2>
<p>The directories are full, but almost everything falls into four groups:</p>
<ul>
<li><strong>Service connectors.</strong> GitHub, Notion, Slack, Google Drive, databases. The server translates between the AI and the service&#39;s API. Useful when you already work there.</li>
<li><strong>System tools.</strong> File system, terminal, browser automation (Playwright, for instance). Mostly interesting for developers building AI agents or letting AI write code.</li>
<li><strong>Search and retrieval.</strong> Web search, documentation lookup, scraping. They give the model current information that wasn&#39;t in its training data.</li>
<li><strong>Memory servers.</strong> They store what you tell your AI and make it findable in later sessions. The most interesting group if repeating your context forever annoys you — and the one with the biggest quality differences.</li>
</ul>
<p>For everyday use you don&#39;t need ten servers. Most people are fine with one or two: one for work (GitHub, Notion) and a memory.</p>
<h2>How to connect a server</h2>
<p>Setup follows the same pattern in every client — enter the address, sign in once:</p>
<ul>
<li><strong>Claude Desktop and ChatGPT:</strong> Settings → &quot;Connectors&quot;, paste the server&#39;s address. Sign-in opens in the browser.</li>
<li><strong>Claude Code:</strong> one terminal command, e.g. <code>claude mcp add --transport http memexa https://brain.memexa.ai/mcp</code>.</li>
<li><strong>Cursor:</strong> one line in the MCP config file.</li>
</ul>
<p>After that, the server shows up in the client&#39;s tool list and the AI uses it on its own whenever a question calls for it. What this looks like for Memexa is on <a href="https://memexa.ai/en/how-it-works">the setup page</a> — with copy-paste configuration for every client.</p>
<h2>Local or hosted?</h2>
<p>Many servers in the directories are small programs you start yourself — via <code>npx</code> in a terminal, configured in a JSON file. That&#39;s fine for developers and the most common hurdle for everyone else: the server only runs while your machine runs, you handle updates yourself, and on your phone it doesn&#39;t exist.</p>
<p>Hosted servers invert this. They run as a service on the web, you connect with a URL and a browser sign-in (OAuth), and the same state is reachable from every device and every client. In exchange, you hand your data to someone else — which brings us to the real question.</p>
<h2>What to look for when choosing</h2>
<p>The protocol is open; the quality behind it is not regulated. Three questions separate the solid servers from the risky ones:</p>
<ol>
<li><strong>Where does the data live?</strong> With local servers, on your machine. With hosted ones: which country, under which law? A server that doesn&#39;t answer this has already answered it.</li>
<li><strong>What is the server allowed to do?</strong> A tool that can delete files or send mail deserves more suspicion than one that only reads. Don&#39;t connect more permissions than the task needs.</li>
<li><strong>Can you leave?</strong> If the service disappears or you want to switch: is there a complete export in an open format?</li>
</ol>
<p>Memexa&#39;s answers: <a href="https://memexa.ai/en/privacy">EU hosting, only you, one-click Markdown export</a>.</p>
<h2>Frequently asked questions</h2>
<h3>Do I need to know how to code?</h3>
<p>For hosted servers with OAuth sign-in: no — entering an address and signing in is all. Local servers from the community directories usually assume a terminal doesn&#39;t scare you.</p>
<h3>How many servers can I connect at once?</h3>
<p>Technically many; practically, restraint pays off. Every server makes the tool list longer, and the model walks it on every request — too many similar tools make its choices worse, not better.</p>
<h3>What separates memory servers from each other?</h3>
<p>Most are scratchpads: the AI stores text snippets it deems worth keeping and searches them later. That already helps. A hosted memory like Memexa goes further — you also throw in PDFs, scans and mail, everything is read, linked, and returned with its source, down to the page number. The difference shows three months later, when you want to know <em>where</em> a fact came from.</p>
]]></content:encoded>
    </item>
    <item>
      <title>What is MCP? The protocol that gives your AI a memory</title>
      <link>https://memexa.ai/en/knowledge/what-is-mcp</link>
      <guid>https://memexa.ai/en/knowledge/what-is-mcp</guid>
      <pubDate>Thu, 06 Aug 2026 07:58:00 GMT</pubDate>
      <category>Fundamentals</category>
      <description>MCP (Model Context Protocol) connects AI clients like Claude or ChatGPT to your data and tools — explained without developer prerequisites.</description>
      <content:encoded><![CDATA[<p>You&#39;ve probably lived this: you explain to ChatGPT in detail what you&#39;re working on — and next session, it&#39;s gone. You switch to Claude because it fits the task better — and start from zero again. The models get smarter with every release, but one thing they can&#39;t do out of the box: remember anything that lives outside the current conversation.</p>
<p>That&#39;s the problem behind an unassuming acronym you now see everywhere: <strong>MCP</strong>.</p>
<h2>The short answer</h2>
<p>MCP stands for <strong>Model Context Protocol</strong> — an open standard that defines how AI applications talk to external data sources and tools. Anthropic published it in late 2024 and deliberately built it as an open protocol rather than an exclusive feature. By now virtually every relevant AI client supports it: Claude, ChatGPT, Cursor, and many more.</p>
<p>The common analogy holds up: <strong>MCP is the USB-C port for AI.</strong> Before USB-C, every device needed its own cable. Before MCP, every connection between an AI and a data source needed its own hand-built integration. With MCP there is one plug that fits everywhere: a service offers its capabilities once as an &quot;MCP server&quot; — and every AI client that speaks the protocol can use them.</p>
<h2>How it works in practice</h2>
<p>Behind the protocol sits a simple division of roles:</p>
<ul>
<li><strong>The client</strong> is the AI application you talk to — Claude, ChatGPT, Cursor.</li>
<li><strong>The server</strong> is a service that can do or knows something — it offers the AI &quot;tools&quot;: <em>search my data</em>, <em>save this note</em>, <em>read this document</em>.</li>
<li><strong>You</strong> connect the two once, usually with an address and a short browser sign-in.</li>
</ul>
<p>From then on the important part happens automatically: when you ask your AI a question that needs external knowledge, it calls the right tool, gets the result back, and works it into its answer. All you notice is that the answer is suddenly correct.</p>
<h2>What does this have to do with memory?</h2>
<p>Out of the box, every AI session is an island. The built-in memory features of ChatGPT and Claude help to a point — but they belong to the respective tool: what ChatGPT has learned about you stays in ChatGPT. Switch models and the memory stays behind.</p>
<p>MCP inverts that relationship. If your memory is its <strong>own MCP server</strong>, it no longer belongs to any client — it belongs to you. Every AI you connect reads and writes the same body of knowledge:</p>
<blockquote>
<p>You tell Claude on Tuesday: &quot;Remember: release moved to the 14th.&quot;
You ask ChatGPT on Friday: &quot;When was the release again?&quot; — and get the answer. With the source.</p>
</blockquote>
<p>That&#39;s the difference between a memory <em>feature</em> and memory as its <em>own layer</em>: models come and go, the knowledge stays in one place — searchable, linked, and exportable.</p>
<h2>Do I need technical skills for this?</h2>
<p>Fewer than the word &quot;protocol&quot; suggests. For most clients, setup takes minutes and always follows the same pattern: enter the MCP server&#39;s address, sign in once in the browser, done. In Claude Desktop and ChatGPT the menu is called &quot;Connectors&quot;, in Cursor it&#39;s one line in a config file, in Claude Code a single command.</p>
<p>For Memexa it looks <a href="https://memexa.ai/en/how-it-works">like this</a> — including copy-paste configuration for every client.</p>
<h2>Frequently asked questions</h2>
<h3>Does MCP cost anything?</h3>
<p>The protocol itself, nothing — it&#39;s an open standard. Costs can appear on two sides: some clients only allow custom connectors on paid plans (ChatGPT, for instance), and the MCP server you connect may be a paid service.</p>
<h3>Is it secure?</h3>
<p>MCP itself only defines the language between client and server — how safe your data is depends on the service behind it: where it hosts, how it secures access, what it does with your content. The questions to ask any MCP service: Where does the data live? Who can read it? Can I leave any time? (Our answers: <a href="https://memexa.ai/en/privacy">EU, only you, yes — as Markdown</a>.)</p>
<h3>Which clients support MCP?</h3>
<p>As of today: Claude (Desktop, Code, Web), ChatGPT, Cursor, and a fast-growing field of other tools. Since the standard is open, practically every new AI application ships with MCP support — which means an MCP-based memory also works with the clients that don&#39;t exist yet.</p>
<h3>There are many MCP servers — what sets them apart?</h3>
<p>Hundreds. Most memory servers are developer tools: locally installed, self-maintained, storing whatever the AI deems worth keeping. A hosted memory like Memexa sits one layer up: you also throw in documents, PDFs and emails, everything is read via text recognition, linked — and every answer cites its source, down to the page number.</p>
]]></content:encoded>
    </item>
  </channel>
</rss>