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.
One click.
Opens claude.ai with the connector pre-filled. Confirm, sign in, and the tools appear in every chat.
Under a minute.
Settings → Connectors → Create, paste the endpoint below, choose OAuth. Or use the guided path.
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.
https://mcp.papez.ai/mcpThe same memory where you write code.
Paste the config, open the sign-in prompt once, done. Every client below speaks MCP over HTTP.
terminal, then /mcp in a session to sign in
claude mcp add --transport http papez \ https://mcp.papez.ai/mcp
~/.cursor/mcp.json
{
"mcpServers": {
"papez": { "url": "https://mcp.papez.ai/mcp" }
}
}~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"papez": { "serverUrl": "https://mcp.papez.ai/mcp" }
}
}.vscode/mcp.json
{
"servers": {
"papez": { "type": "http", "url": "https://mcp.papez.ai/mcp" }
}
}settings.json
{
"context_servers": {
"papez": { "source": "custom", "url": "https://mcp.papez.ai/mcp" }
}
}~/.gemini/settings.json
{
"mcpServers": {
"papez": { "httpUrl": "https://mcp.papez.ai/mcp" }
}
}