Connect over MCP
ShareMyPage runs a hosted MCP server, so an AI assistant like Claude, ChatGPT, Gemini, or Cursor can manage your pages directly. Connect it once with a scoped API token, then create and update pages, organize folders, and read your team’s comments without leaving your tools.
1. Create an API token
In the app, open Settings → Connect AI and create a token. It is scoped to your user and workspace, shown once, and revocable at any time. Copy it somewhere safe.
2. Add the endpoint to your client
Point your MCP client at the hosted endpoint and pass your token as a Bearer header. For example, in a client that uses an
mcpServers config:{
"mcpServers": {
"sharemypage": {
"url": "https://sharemypage.app/api/mcp",
"headers": {
"Authorization": "Bearer smp_your_token_here"
}
}
}
}For a client that cannot send custom headers, append the token to the URL instead: https://sharemypage.app/api/mcp?key=smp_your_token_here.Where to add it
- Claude (web, desktop & mobile): Customize → Connectors → + → Add custom connector. Paste the
?key=URL above and leave the OAuth fields blank. - ChatGPT (Plus, Pro, Business, Enterprise or Edu): Settings → Connectors → turn on Developer mode, then Create. Paste the
?key=URL as a custom connector. - Gemini: add the
mcpServersblock above to your Gemini CLIsettings.json. The Gemini app doesn’t support custom remote MCP servers yet.
Available tools
Once connected, the server exposes seven tools:
list_pagesList pages in the workspace, optionally by folder.list_foldersList the workspace’s folders.get_pageReturn a page’s current HTML and metadata.create_pageCreate a page from HTML and get its shareable URL.update_pageReplace a page’s HTML or change its settings.delete_pageDelete a page by id.list_commentsRead a page’s comments so you can revise.
Limits and safety
Token use is rate-limited. A token can only act inside the single user and workspace it was issued for, never beyond it. Tokens are hashed at rest and can be revoked from Settings → Connect AI the moment you no longer need them.
Questions about the integration? See how we keep your pages secure.