MCP Connector

Deploy from Claude

Connect Claude to Deplixo and deploy apps without ever leaving the conversation. No copy-paste, no terminal, no extra tabs — just ask Claude to build something and ship it.

Here's the whole process

There are a few steps below, but each one is short and simple. Here's what you'll do:

Setup (one-time)

1 Add Deplixo as a connector in Claude (~30 seconds)

Try it out

2 Ask Claude to build something and deploy it
3 Click the save link to save your app

That's it. The detailed steps below walk you through each part with screenshots.

Set up

Connector Marketplace coming soon

Once Deplixo is approved in Anthropic's Connector Marketplace, setup will be a single click. Until then, you'll add it as a custom connector — it takes about 30 seconds and works exactly the same way. Follow the steps below.

Part 1: Add the Deplixo Connector

1
Open claude.ai and click the Customize icon

Go to claude.ai. In the left sidebar, click the Customize icon (it looks like a small briefcase).

See screenshot Claude sidebar with Customize icon highlighted
2
Click Connectors

On the Customize page, click Connectors in the left sidebar.

See screenshot Customize page with Connectors selected in sidebar
3
Click the + button, then "Add custom connector"

At the top of the Connectors panel, click the + button. A small dropdown will appear. Select "Add custom connector."

See screenshot Plus button dropdown showing Browse connectors and Add custom connector options
4
Fill in the connector details

In the dialog that appears, enter:

  • Name: Deplixo
  • Remote MCP server URL: https://mcp.deplixo.com

Then click Add.

See screenshot Add custom connector dialog with Deplixo name and mcp.deplixo.com URL filled in
5
You're connected!

Deplixo now appears in your connectors list. You'll see its tools: deplixo_deploy, deplixo_enhance, and others. The permissions default to Always allow, which is what you want — it lets Claude deploy without asking you each time.

See screenshot Deplixo connector added showing tool permissions

That's it. You're connected!

You'll never need to do that again. Now let's take it for a spin.

Try it out

Part 2: Build & Deploy Your First App

Now for the fun part. Start a new conversation and try it out.

1
Enter "Make me a Hello World App"

Start a new chat and type that in. Claude will build the app for you.

2
Once done and you like it, type "deploy to deplixo"

Claude will call the Deplixo deploy tool and push your app live.

3
When you get the link, click it to save it in Deplixo

Claude will give you a save link. Click it to save your app. Unsaved apps are deleted after 1 hour, so don't skip this step!

Tips for better results

Describe the app, not the code

You don't need to say "write HTML." Just describe what you want: "Build a recipe organizer where I can save recipes by category and search them."

Mention persistence if you need it

If your app should save data, say so: "Save my data so it persists across sessions." Claude will use the right Deplixo component automatically.

Iterate in the same conversation

Don't start a new conversation for small changes. Claude already has the context, so updates are instant.

Don't forget your super powers

Every Deplixo app comes with built-in primitives that handle the hard stuff. Just describe what you need and Claude will wire it up automatically.

Persistent Storage

Save data that persists across sessions and syncs across devices.

"Build a recipe organizer where I can save recipes by category. Save my data so it persists."
Built-in AI

Add AI-powered features without API keys or billing setup.

"Make a writing assistant that helps me improve my emails. It should suggest rewrites and tone adjustments."
Charts & Visualizations

Beautiful charts and graphs, ready to go.

"Build a personal finance tracker with charts showing my spending by category over time."
Real-Time Multiplayer

Multi-user apps with live sync — no backend needed.

"Create a shared whiteboard where multiple people can draw and see each other's changes in real time."
File Uploads

Let users upload images, documents, and more.

"Build a mood board app where I can upload images and arrange them on a canvas."

Plus maps, QR codes, PDF export, sound effects, CSV export, and a lot more. See all the building blocks →

For developers

Using Deplixo in Claude Code (CLI)

You do not need this. The guide above covers everything for deploying apps from claude.ai. This section is only for software developers who use Claude Code, Anthropic's command-line AI tool. If that doesn't mean anything to you, you can safely ignore this section.

If you use Claude Code (the CLI tool), you can add Deplixo as an MCP server in your configuration:

Option A: Global config

Add this to ~/.claude/settings.json to make Deplixo available in all your Claude Code sessions:

{
  "mcpServers": {
    "deplixo": {
      "type": "streamablehttp",
      "url": "https://mcp.deplixo.com/"
    }
  }
}
Option B: Per-project config

Add the same block to .mcp.json in any project directory to enable Deplixo for that project only.

Once configured, just ask Claude Code to build and deploy an app. It works the same way as on claude.ai — Claude writes the code and calls the deploy tool.

Prefer to use ChatGPT?

Click anywhere or press Esc to close