AgentAge

Connect any MCP client

A vendor-neutral guide to wiring any MCP-capable agent to Agentage Memory. The same endpoint and OAuth flow work everywhere - no API key.

What you need

Any client that speaks the Model Context Protocol over Streamable HTTP can connect. Three facts are all it takes:

  • Endpoint - https://memory.agentage.io/mcp
  • Transport - Streamable HTTP
  • Auth - OAuth 2.1 (PKCE + dynamic client registration); sign in once in the browser, no API key.

Connect in four steps

  1. 1

    Add an HTTP MCP server

    In your client, add a new MCP server of type http pointing at the endpoint:

    text
    https://memory.agentage.io/mcp
  2. 2

    Let it register

    On first connect the client runs Dynamic Client Registration automatically - nothing to pre-create or paste.

  3. 3

    Sign in

    The client opens a browser to auth.agentage.io. Approve access (magic-link, or GitHub / Google / Microsoft). No token ever touches the client config.

  4. 4

    Verify

    Ask the agent to write a note and read it back (memory__write then memory__read). The same account in every client shares one memory.

Generic config

Most clients accept a JSON MCP config. The shape is the same everywhere - only the top-level key differs (mcpServers for most clients, servers for VS Code):

json
{
  "mcpServers": {
    "agentage-memory": {
      "type": "http",
      "url": "https://memory.agentage.io/mcp"
    }
  }
}

One-click for known clients

Using one of these? The dedicated page has a one-click install plus the exact config:

Tools & limits