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
- Sign in and navigate to API Keys in the sidebar.
- Click New API key and give it a name (e.g.
cursor-dev). - 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:
- 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: Project Management — Full project tool reference