by @omkarbhede
CLI tool for managing Hoppscotch API documentation. Use when user asks to document API, add API to Hoppscotch, update API docs, or manage API collections.
agent-hoppscotch auth status# Step 1: Set endpoint (ask user for their Hoppscotch URL)
agent-hoppscotch auth set-endpoint "<user_provided_url>/graphql"
# Step 2: Set cookie (ask user to copy from browser)
agent-hoppscotch auth set-cookie "<cookie_string>"
# Step 3: List teams and ask user to select
agent-hoppscotch team list
agent-hoppscotch auth set-default --team <selected_team_id>
# Step 4: List collections and ask user to select default
agent-hoppscotch collection list
agent-hoppscotch auth set-default --collection <selected_collection_id>
agent-hoppscotch auth status # Show configuration
agent-hoppscotch auth set-endpoint "<url>" # Set GraphQL endpoint
agent-hoppscotch auth set-cookie "<cookie>" # Set session cookie
agent-hoppscotch auth set-default --team <id> --collection <id> # Set defaults
agent-hoppscotch auth clear # Remove all credentials
agent-hoppscotch team list # List all teams
agent-hoppscotch team find "<term>" # Search by name
agent-hoppscotch team get <id> # Get team details
agent-hoppscotch collection list # List root collections (uses default team)
agent-hoppscotch collection list --team <id> # List for specific team
agent-hoppscotch collection list --parent <id> # List child collections
agent-hoppscotch collection find "<term>" # Search (includes children)
agent-hoppscotch collection get...