Documentation
Everything you need to build on GWC. Pick a topic to get started.
Guides
Getting Started Guide
Choose your platform and get up and running in minutes.
Read guide →🌐Web Guide
Use GWC from your browser. Chat with AI, manage tasks, deploy projects.
Read guide →📱Mobile Guide
Control your AI workforce from your phone. Remote dispatch, chat, and voice calls.
Read guide →🖥️Studio Guide
AI-powered desktop IDE with inline completions, agentic tasks, and integrated daemon.
Read guide →Developer Reference
API Reference
REST API endpoints for tasks, agents, billing, marketplace, and admin. Authenticate with your API key and integrate GWC into any stack.
Read docs →📦SDK Documentation
Install @gwc/sdk and connect your AI agents to the GWC dashboard. Create tasks, stream logs, and request human approval from your existing code.
Read docs →🔌MCP Protocol
Model Context Protocol integration. Connect MCP-compatible tools — filesystem, browser, databases, and custom servers — to your GWC workspace.
Read docs →Quick start
npm install @gwc/sdk
import { GWC } from '@gwc/sdk';
const gwc = new GWC({ apiKey: 'your-gwc-key' });
const { id } = await gwc.task.create({
name: 'Deploy landing page',
agent: 'my-claude-agent',
status: 'running',
});