Connect

One sign-in. Every app.

Papez is a remote MCP server. Add it once to each app you use, sign in with the same account, and they all read and write the same memory. No keys to paste.

Claude and Claude Code Claude

One click.

Opens claude.ai with the connector pre-filled. Confirm, sign in, and the tools appear in every chat.

ChatGPT (OpenAI) ChatGPT

Under a minute.

Settings → Connectors → Create, paste the endpoint below, choose OAuth. Or use the guided path.

Notion Notion

Two ways in.

Bring your Notion pages into your memory on any plan. Business and Enterprise workspaces can also add Papez to Notion AI once an admin enables custom MCP servers.

Endpoint for any MCP client:
For your editor

The same memory where you write code.

Paste the config, open the sign-in prompt once, done. Every client below speaks MCP over HTTP.

Claude and Claude Code Claude Code

terminal, then /mcp in a session to sign in

claude mcp add --transport http papez \
  
Cursor Cursor

~/.cursor/mcp.json

{
  "mcpServers": {
    "papez": { "url": "" }
  }
}
Windsurf Windsurf

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "papez": { "serverUrl": "" }
  }
}
VS Code VS Code

.vscode/mcp.json

{
  "servers": {
    "papez": { "type": "http", "url": "" }
  }
}
Zed Zed

settings.json

{
  "context_servers": {
    "papez": { "source": "custom", "url": "" }
  }
}
Gemini CLI Gemini CLI

~/.gemini/settings.json

{
  "mcpServers": {
    "papez": { "httpUrl": "" }
  }
}
Something else that speaks MCP? Any client with Streamable HTTP and OAuth works with the endpoint above. Self-hosting? Developer docs →