Connect your AI to Benmore

Build with the AI subscription you already pay for. Benmore hosts your apps; an external MCP client such as Claude, ChatGPT, Cursor, or Codex does the building. Pick your client:

Claude on the web

2 minutesNo install
1

Open the Connectors settings

Go to claude.ai โ†’ Settings โ†’ Connectors and click Add custom connector.

2

Paste the Benmore server URL

Name it Benmore and paste this URL, then click Add:

https://benmore.ai/mcp
3

Sign in to Benmore

Claude opens a Benmore sign-in window. Sign in, then approve the consent page that names Claude; the connection is saved to your Claude account. You can revoke it later under Connected tools on your Benmore profile.

4

Start building

In a new chat, enable Benmore in the tools menu and say what you want:

Connect to my Benmore workspace, list my apps, and keep building my latest one.
๐Ÿ’กUse the model you already have. Everything Claude builds here runs on your Claude subscription. Your Benmore plan covers the app platform and hosting.

Claude Desktop

2 minutesMac & Windows
1

Open Settings โ†’ Connectors

In the Claude menu, choose Settings, then Connectors, then Add custom connector. (No Connectors tab? Update the app to the latest version.)

2

Paste the Benmore server URL

https://benmore.ai/mcp
3

Sign in to Benmore

Your browser opens a Benmore sign-in page. Sign in and approve the consent page once.

4

Start building

Enable Benmore in the chat's tools menu and say what you want:

Connect to my Benmore workspace, list my apps, and keep building my latest one.
๐Ÿ’กAlready added it on claude.ai? Connectors belong to your Claude account, so the same Benmore connector shows up in the desktop app automatically.

Claude Code

3 minutesThe full workflow
1

Install the Benmore CLI

brew install benmore-studio/benmore/benmore-cli

Homebrew is primary on macOS. Linux/CI: curl -fsSL https://benmore.ai/install-cli.sh | sh.

2

Bootstrap once

benmore bootstrap

Signs you in (or creates your account), sets up your ~/Benmore workspace, pulls any apps you already have, and installs the agent skill: the operating manual Claude Code loads automatically.

3

Launch Claude Code from the workspace

terminal
cd ~/Benmore
claude

That's the whole setup. Say "build me an invoicing app with client logins" and watch it go live at <app>-dev.benmore.ai while the agent works.

๐Ÿ’กThis is the deepest integration. Installed edit hooks deploy Claude Code's edits to a live dev URL, the agent verifies its work in a real headless browser, records demo videos, and publishes to production when you say go. Full tour: benmore.ai/cli.

Codex

3 minutesOpenAI terminal agent
1

Install the Benmore CLI

brew install benmore-studio/benmore/benmore-cli

Homebrew is primary on macOS. Linux/CI: curl -fsSL https://benmore.ai/install-cli.sh | sh.

2

Bootstrap once

benmore bootstrap

Signs you in, sets up your ~/Benmore workspace, and installs the complete Codex skill at ~/.agents/skills/benmore-cli. For only the skill, run benmore skill install --agent codex (requires cloud CLI 0.1.30 or later).

3

Launch Codex from the workspace

terminal
cd ~/Benmore
codex
4

Use the shared skill, then build

Codex discovers the Benmore skill natively. Open the app directory for its AGENTS.md, and invoke the skill when useful:

Use $benmore-cli to build me a notes app, deploy it to development, and verify the result.
๐Ÿ’กSame platform, same commands. Codex drives the identical benmore CLI that Claude Code uses: live dev URL, explicit file pushes, source synchronization checks, and verified promotion.