Your AI agent, now with
a product reference library
Connect GetG to Claude or Cursor and ask your agent anything about real product flows — research patterns, pull HTML and design tokens, recreate any screen without leaving your editor.
What you can do
Ask how real products handle onboarding, feedback, empty states, or settings — without knowing which tool has what.
Get actual colors, fonts, spacing, and HTML from any recorded flow — feed it straight into your design system or Tailwind config.
Your agent sees real screenshots and HTML — not descriptions. The output matches what you're actually building against.
Try asking your agent
You don't need to know which tool has what. Just describe what you're looking for — the agent finds real flows, pulls screenshots and HTML, and helps you research or build.
“How do modern B2B tools handle user onboarding? Show me 3 different approaches and compare what makes each one feel smooth or frustrating.”
“I'm designing a feedback collection feature. Find me real examples of how different products ask for feedback in-context — screenshots and layout breakdowns.”
“We're redesigning our settings page. Show me how 2–3 well-designed SaaS tools structure their settings — what patterns keep coming up?”
“I want our empty states to feel encouraging, not dead. Find examples of empty states that actually guide users forward and get me the HTML for the best one.”
How to invoke the tools
Type /getg in any conversation. Claude will prompt you for a search query, then automatically chain search → steps → screenshot → HTML.
/getg find the ChatGPT input componentOpen a chat with Ctrl+L and type your request naturally — works in both Chat and Agent mode. You can also prefix with use the getg tools to... to be explicit.
Find the ChatGPT new message input and get its HTMLJust describe what you want. Claude Code runs in agentic mode by default and will call search_flows, get_flow_steps, and the rest as needed — no special prefix required.
Get the Figma empty state screen and recreate it in ReactConfiguration
Open ~/Library/Application Support/Claude/claude_desktop_config.json and add the getg entry. Restart Claude Desktop after saving.
{
"mcpServers": {
"getg": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://app.thegetg.com/api/mcp"
]
}
}
}Uses mcp-remote to bridge the HTTP server to the Desktop client (no install needed — npx handles it).
Available tools
search_flowsSearch for recorded UI flows by natural language. Returns up to 8 results with tool name, description, tags, and thumbnail.
get_flow_stepsGet per-step metadata — clicked element text, tooltip title, duration, patch size. Use to identify which step index matches a specific UI moment.
get_step_screenshotReturns a base64 PNG screenshot of any step. Vision-capable clients render it inline so the agent sees the exact screen before writing code.
get_trimmed_htmlSelf-contained HTML snapshot of a step — tree-shaken CSS, no external deps. Use this to recreate the exact screen in your codebase.
get_design_tokensFull design token set — colors, fonts, spacing, shadows, gradients, border radius, and semantic color roles (primary, surface, error).
get_flow_skeletonCompact step-by-step goal + action list (~500 tokens). Good for a quick orientation before fetching HTML or screenshots.







