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. Generate an API key

  1. Sign in and navigate to API Keys in the sidebar.
  2. Click New API key and give it a name (e.g. cursor-dev).
  3. Copy the key — it starts with zb_ and is shown only once.

3. Configure your MCP client

Add Zeeb to your MCP client configuration. Replace zb_your_key_here with your actual key.

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"
    }
  }
}

4. Create your first project

Ask your AI agent:

"Create a new Zeeb project called my-api"

The agent will call zeeb_create_project and return a project ID. Your project is now live with a git repository and a preview URL.

5. Build something

With a project created, 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