Skip to content

Your First Tool Call

A 5-minute guided walkthrough from zero to your first G6 pipeline.

Prerequisites

  • Claude Code with G6 MCP server configured (see Setup)

Step 1: Check System Status

Use the system_status tool

Expected response:

{
  "status": "operational",
  "components_available": 85,
  "tools_available": 35
}

Step 2: Ask a Question

Use guide_ask: "What tools should I use for a data analysis task?"

G6 will recommend relevant tools based on your query.

Step 3: Decompose a Goal

Use decompose_goal with goal: "Analyse sales data to find top-performing products"

G6 breaks this into verified subtasks with resource bounds.

Step 4: Run a Pipeline

Use run_data_pipeline with query: "Load sales.csv and compute summary statistics"

The pipeline orchestrates multiple components — data loading, analysis, and reporting — in a single call.

What Happened

Behind the scenes, G6:

  1. Validated your request against safety bounds
  2. Selected the optimal components from 85+ available
  3. Orchestrated them as a composable pipeline
  4. Returned verified results

Next Steps