Skip to content

Quick Start: Domain Workers

You want AI tools that understand your profession. G6 includes 39 job agent specialisations, each with domain-specific knowledge, workflows, and vocabulary.

How you reach G6

G6 is a hosted service. You use it from an MCP client on your own machine; there is nothing to install and nothing to launch.

claude mcp add g6 --transport sse \
  --url https://g6solver.com/mcp/sse \
  --header "Authorization: Bearer YOUR_API_KEY"

Any MCP client that supports SSE can connect the same way. See the Setup guide.

The GUI, TUI and REPL are not available

Earlier versions of this page offered a browser dashboard (g6 --gui), an 11-tab terminal interface (g6 --tui) and a REPL (g6) as ways in. None is part of the hosted product. They exist in the codebase and are documented under Bases for reference, but there is no desktop application to install, so there is no way to launch them.


Your first 10 minutes

1. Connect your client

Run the command above with the API key from your account dashboard.

2. Find your agent

Ask in natural language:

"Use guide_find_tool to find the right job agent for tax preparation"

G6 recommends job_tax with its 25 specialised tools. Or simply describe the task and let G6 route it:

"Use the tax agent to calculate FY2026 liability for a sole trader with $180k revenue and $45k deductions"

3. Use domain-specific tools

The job agent uses domain vocabulary (not system vocabulary) in its responses, so outputs make sense in your professional context. For example, the tax agent speaks in terms of assessable income, deductions, and offsets — not "data pipeline step 3".

4. Get structured results

Results include citations, confidence scores, and evidence trails appropriate to your domain, plus a completion state (verified, qualified-draft, blocked-escalated) telling you how far the checking actually got.


Available job agents

G6 has agents for these professions, each with a compact MCP tool surface:

Category Agents
Business & Finance Accountant, Analyst, Business, Consultant, Entrepreneurship, Finance, Manager, Marketing, Sales, Tax
Healthcare Allied Health, Medical Surgical, Pharmaceutical, Psychologist
Engineering & IT AI, Cybersecurity, Engineer, IT
Legal & Government Lawyer, Political, Public Relations
Trades & Industry Agriculture, Construction, Energy, Labourer, Machinery Operator, Manufacturing, Mining, Trades
Services Administration, Education, Entertainment, Hospitality, Logistics, Services, Tourism
Creative Creative Media, Researcher, Scientist

How job agents work

Each job agent is a composable AIBlock that:

  1. Accepts domain-specific inputs (e.g., financial data for accounting, case files for legal)
  2. Routes to the appropriate G6 components (data analysis, formal verification, etc.)
  3. Returns results using domain vocabulary and professional standards
  4. Maintains safety guardrails appropriate to the profession (e.g., legal disclaimers, medical cautions)

Next steps