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:
- Go to Projects in the sidebar and click New project.
- 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
- Navigate to API Keys in the sidebar.
- Click New API key, select the project you just created, and give the key a name (e.g.
cursor-dev). - 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:
- Scaffold the
blogapp (zeeb_create_app) - Generate
PostandCommentmodels (zeeb_create_model) - Generate serializers and viewsets (
zeeb_create_serializer,zeeb_create_viewset) - Create and apply migrations (
zeeb_create_migration,zeeb_run_migrations)
Your project preview URL updates instantly.
What's next
- Authentication — API keys, OAuth, and token format
- Connecting — Detailed per-client setup
- Tools: Projects & References — Project reference tools