Web Portal Onboarding¶
The G6 Web portal is the browser-based surface for account management, billing, documentation, and workflow status.
What the Web portal handles¶
| Function | Description |
|---|---|
| Account | Sign up, SSO login, 2FA, profile management |
| Billing | Stripe checkout, subscription management, usage history |
| API keys | Generate and manage API keys for MCP/REST access |
| Documentation | Hosted docs, tutorials, and workflow guides |
| Status | System health, service availability, degradation notices |
| Usage | Token consumption, cost tracking, budget alerts |
Getting started¶
Step 1: Create account¶
Navigate to the G6 web portal and sign up. Options: - Email + password - Google SSO (via django-allauth) - GitHub SSO
Step 2: Choose a plan¶
| Plan | Monthly | Includes |
|---|---|---|
| Free Trial | $0 | 30 core tools, 5,000 tokens/hour |
| Researcher | $29 | Full tool access, 50,000 tokens/hour |
| Builder | $99 | Full access, 500,000 tokens/hour, priority support |
Stripe handles checkout. You can upgrade, downgrade, or cancel at any time via the billing portal.
Step 3: Generate API key¶
- Navigate to Settings > API Keys
- Click Generate New Key
- Copy the key (shown once)
- Use it in your MCP or REST configuration
Step 4: Configure MCP connection¶
Add to your Claude Code MCP config:
{
"mcpServers": {
"g6": {
"command": "python",
"args": ["-m", "mvp.mcp"],
"env": {
"G6_API_KEY": "your-key-here"
}
}
}
}
Step 5: Run your first workflow¶
With MCP connected, follow the MCP First Workflow Guide to classify your first dataset.
Dashboard¶
The dashboard shows:
- Recent workflows — last 5 runs with status and accuracy
- Usage this period — tokens consumed, cost, remaining budget
- System health — service availability and degradation status
- Quick actions — links to run new workflow, view docs, manage billing
Usage monitoring¶
The Usage page shows:
- Token consumption by hour/day/month
- Cost breakdown by component
- Budget alerts (configurable thresholds)
- Export to CSV for expense reporting
Workflow integration¶
The Web portal complements MCP and REST:
| Task | Best surface |
|---|---|
| Run classification workflow | MCP (Claude Code) or REST (automation) |
| Check billing and usage | Web portal |
| Generate/rotate API keys | Web portal |
| Read documentation | Web portal |
| Monitor system health | Web portal or REST /health |
| View workflow history | Web portal |
Next steps¶
- MCP First Workflow — run your first classification
- REST Workflow Guide — programmatic access
- Configuration — environment setup