Getting Started

Quickstart

Get from zero to your first MCP tool call in under 5 minutes.

1. Create an account

Go to zeeb.cloud/register and sign up. You'll have a workspace ready immediately — no credit card required on the Free plan.

2. Create a project

Projects are created in the portal, where you choose the backend framework:

  1. Go to Projects in the sidebar and click New project.
  2. Pick a name and framework. Your project is created with a git repository and a live preview URL.

3. Generate an API key for the project

  1. Navigate to API Keys in the sidebar.
  2. Click New API key, select the project you just created, and give the key a name (e.g. cursor-dev).
  3. Copy the key — it starts with zb_ and is shown only once. The key is bound to that project.

4. Configure your MCP client

Add Zeeb to your MCP client configuration. Replace zb_your_key_here with your actual key. The connection is bound to the key's project — no project id needed in any tool call.

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "zeeb": {
      "url": "https://mcp.zeeb.cloud/mcp",
      "headers": {
        "Authorization": "Bearer zb_your_key_here"
      }
    }
  }
}

Restart Claude Desktop. You should see the Zeeb tools in the tool picker.

Cursor

Open Settings → Cursor Settings → MCP and add a new server:

{
  "zeeb": {
    "url": "https://mcp.zeeb.cloud/mcp",
    "headers": {
      "Authorization": "Bearer zb_your_key_here"
    }
  }
}

5. Build something

Your connection already points at the project you bound the key to, so you can immediately start generating backend code:

"Add a blog app to my project with Post and Comment models, REST endpoints, and run the migrations"

Zeeb will:

  1. Scaffold the blog app (zeeb_create_app)
  2. Generate Post and Comment models (zeeb_create_model)
  3. Generate serializers and viewsets (zeeb_create_serializer, zeeb_create_viewset)
  4. Create and apply migrations (zeeb_create_migration, zeeb_run_migrations)

Your project preview URL updates instantly.

What's next