{% extends "base.html" %} {% block title %}MCP Connections - Memorizz{% endblock %} {% block content %}

MCP Connections

Connect agents to Notion, Google Calendar, and custom MCP services—or expose MemoRizz memory and agents to other MCP clients.

{% if selected_agent_id %}{% endif %}

Expose MemoRizz as an MCP server

Server credentials are process-level deployment secrets, so they are configured in the CLI or your platform secret manager—not stored in this browser.

Local MCP host

Add this server definition to Claude Desktop, Codex, or another MCP host.

{
  "mcpServers": {
    "memorizz": {
      "command": "memorizz",
      "args": ["mcp", "serve"]
    }
  }
}

Authenticated remote server

Remote mode defaults to read-only. Use a long random bearer token and an HTTPS reverse proxy.

export MEMORIZZ_MCP_SERVER_API_KEYS='{"client":"replace-with-a-long-random-token"}'
memorizz mcp serve --transport streamable-http --host 0.0.0.0 --public-url https://memory.example.com{% if selected_agent_id %} --agent-id {{ selected_agent_id }}{% endif %}
Deployment guide
{% if oauth_result %}
OAuth {{ oauth_result }}{% if oauth_server %} for {{ oauth_server }}{% endif %}. Use Test to verify the connection.
{% endif %} {% if not selected_agent_id %}
Create an agent before configuring MCP connections.
{% elif not servers %}

No MCP servers are configured for this agent.

{% else %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}