Pageree MCP Server

MCP serverEverything else

Build, publish, capture leads from, measure and improve landing pages from your AI assistant.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use Pageree MCP Server

Install Pageree MCP Server

The server’s own address, for the clients that take one directly. Or connect ahel onceand every client you use reads it from one address, with the account kept on ahel rather than in each client’s config.

  • Claude Code

    claude mcp add --transport http pageree-mcp-server 'https://mcp.pageree.com/'

    Run it once in your project, then open /mcp to approve any sign-in the server asks for.

  • Claude Desktop

    https://mcp.pageree.com/

    Add a custom connector in Settings, paste this address, and approve the sign-in.

  • Cursor

    cursor://anysphere.cursor-deeplink/mcp/install?name=pageree-mcp-server&config=eyJ1cmwiOiJodHRwczovL21jcC5wYWdlcmVlLmNvbS8ifQ==

    Open the link and Cursor adds the server at that address.

  • ChatGPT

    https://mcp.pageree.com/

    In Settings, enable Developer mode, create an MCP app, and paste this address. Your plan and workspace must allow custom apps.

  • Codex

    codex mcp add pageree-mcp-server --url 'https://mcp.pageree.com/'

    Run it once, then sign in with codex mcp login pageree-mcp-server if the server asks for an account.

From the project's README

As published by Pageree/mcp-server in README.md.

Build, publish, capture leads from, measure and improve landing pages — from your AI assistant.

Pageree is a hosted remote MCP server. Connect it to an MCP client and your assistant can design a landing page, host it on a real URL, collect form submissions, read visitor analytics, and revise the page against what the numbers show. There is nothing to install and no API key to paste: authentication is OAuth, handled in the browser by your client.

Endpointhttps://mcp.pageree.com/
TransportStreamable HTTP
AuthenticationOAuth 2.1, dynamic client registration, PKCE S256
Registry namecom.pageree/landing-pages
Websitepageree.com

This repository is the public home of the Pageree MCP server: its documentation and its server.json registry manifest. The server itself is hosted by Pageree and its implementation is not open source, so there is no source tree here to build or run.

What it does

Pageree is built around one workflow — discover → build → publish → measure → improve — and the tools follow it.

Pages

ToolPurpose
list_pagesList the pages in the account, with status and URLs
get_page_informationDetails for one page: slug, status, goal, delivery, domain
save_draftCreate or update a page's draft HTML
get_draft_htmlRead back the current draft
discard_draftThrow away the draft and keep the published version
publishPut the draft live on its public URL
list_versionsThe version history of a page
get_published_html / get_previous_version_htmlRead a live or earlier version
rollbackRestore a previous version
audit_pageCheck a page against Pageree's structure and quality rules

Leads and goals

ToolPurpose
set_goalDefine what the page is trying to achieve
set_deliveryRoute form submissions — email or webhook

Form submissions from published pages are captured by Pageree and delivered to the destination you configure.

Analytics

ToolPurpose
get_analyticsSessions, click and bounce rates, scroll and reading behaviour, and per-section click, exit and dwell distribution

Pageree injects its own first-party tracking into published pages and attributes behaviour to individual page sections, so an assistant can tell which part of a page is losing visitors rather than only that the page is.

Assets and media

ToolPurpose
generate_imageGenerate an image for the page
search_iconsFind an icon
upload_asset / remove_asset / get_uploaded_page_assetsManage the page's hosted images and files

Custom domains

ToolPurpose
custom_domain_set / custom_domain_status / custom_domain_removeServe a page from your own domain

Built-in guidance

A set of get_skill_* tools returns Pageree's own instructions to the assistant on demand — page structure and required markup, conversion copywriting, reading analytics, the optimisation loop, image handling, form management, custom domains, privacy and consent, and content policy. The assistant loads the relevant one before it works, so page-building guidance stays current without you maintaining local rules or skill files.

whoami reports the connected account; get_subprocessors returns the current subprocessor list.

Requirements

  • An MCP client that supports remote servers over Streamable HTTP with OAuth — VS Code with GitHub Copilot, Claude, ChatGPT, Cursor, Codex, Claude Code, Gemini CLI, Windsurf, Cline, or OpenCode.
  • A Pageree account.
  • Network access to https://mcp.pageree.com/.

Service usage is subject to your Pageree plan.

Configure

VS Code (GitHub Copilot)

Add the server from the Command Palette — MCP: Add ServerHTTP — and enter https://mcp.pageree.com/. Or create .vscode/mcp.json in your workspace, merging with any servers already there:

{
  "servers": {
    "pageree": {
      "type": "http",
      "url": "https://mcp.pageree.com/"
    }
  }
}

Start the server, then complete the Pageree sign-in that opens in your browser and approve the access request. Pageree's tools become available in agent mode.

Other clients

Most clients take the same two values — the URL and the Streamable HTTP transport. The transport field differs by client: Gemini CLI uses httpUrl, VS Code uses "type": "http", and Cline uses "type": "streamableHttp".

{
  "mcpServers": {
    "pageree": {
      "url": "https://mcp.pageree.com/"
    }
  }
}

Per-client walkthroughs are at pageree.com/docs.

The endpoint ends at /. Do not append /mcp or /sse.

Verify the connection

In a new agent chat:

Use Pageree to call whoami and list_pages. Do not create, change, or publish anything.

You should see the connected account and its pages. An empty list is expected on a new account.

Use it

Build a page

Create a landing page for my accounting service with a quote-request form. Ask me about the business, the audience, and the action I want first, then show me a preview before publishing.

Capture the leads

Send new enquiries from this page to my email.

Improve it with real data

Review visitor engagement on my landing page, tell me which section is losing people, and propose one change. Wait for my approval before editing or publishing.

Publishing makes a page public. Review the preview and confirm the destination before asking an assistant to publish.

Troubleshooting

SymptomWhat to check
404 or an SSE errorUse https://mcp.pageree.com/ exactly, and select Streamable HTTP. The endpoint is at the root.
Authentication requiredRe-run your client's connect or sign-in command and finish the browser authorization.
No tools appearConfirm the server is enabled and start a new agent chat after connecting.
Wrong accountDisconnect, reconnect, and sign in to the intended Pageree account.
Organization blocks the serverVS Code and some clients let an administrator restrict MCP servers; ask yours to allow mcp.pageree.com.

Repository contents

README.md            This document
server.json          MCP registry manifest for com.pageree/landing-pages
assets/logo.svg      Pageree logo

No executable code, server runtime, or credentials are distributed here. Tool calls go to the hosted Pageree service; your client stores its own OAuth credentials.

Links

Advanced
Delivery
landing-pages MCP server → your ahel gateway (mcp.ahel.ai) → every connected AI client.
Catalog kind
mcp-server
Gateway key
com-pageree-landing-pages
Source
github.com/Pageree/mcp-server
Hosted endpoint
https://mcp.pageree.com/