{
  "info": {
    "name": "Agenty — mcp.ai",
    "description": "REST API for the Agenty MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/agenty",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "agenty_add_list_rows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/list/rows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "list",
            "rows"
          ]
        },
        "description": "Tool to add new rows to a list. Use when you need to insert one or more data rows into an existing list. Column names in row objects must match the list's schema.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rows\": \"\",\n  \"list_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_agents_controller_create_agent",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/agents/controller/create/agent",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "agents",
            "controller",
            "create",
            "agent"
          ]
        },
        "description": "Creates a new Agenty agent for web scraping, change detection, crawling, map monitoring, or brand monitoring. Use this tool to set up automated data extraction agents. Requires: - name: A descriptive ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"icon\": \"\",\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"type\": \"\",\n  \"start\": false,\n  \"config\": {},\n  \"scripts\": {},\n  \"user_id\": 0,\n  \"version\": 0,\n  \"agent_id\": \"\",\n  \"is_public\": false,\n  \"scheduler\": {},\n  \"account_id\": 0,\n  \"created_at\": \"\",\n  \"is_managed\": false,\n  \"project_id\": 0,\n  \"updated_at\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_agents_controller_get_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/agents/controller/get/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "agents",
            "controller",
            "get",
            "templates"
          ]
        },
        "description": "Tool to fetch all public agent templates and sample agents. Use when listing available templates for users to select.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_agents_delete_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/agents/delete/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "agents",
            "delete",
            "by",
            "id"
          ]
        },
        "description": "Tool to delete a single agent by its ID. Use when you need to permanently remove an agent after confirming it exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"agent_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_agents_get_all",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/agents/get/all",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "agents",
            "get",
            "all"
          ]
        },
        "description": "Tool to fetch all active agents under an account. Use after authenticating when you need to list agents with pagination and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_agents_get_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/agents/get/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "agents",
            "get",
            "by",
            "id"
          ]
        },
        "description": "Retrieves complete details of a specific agent including its configuration, input settings, scheduler, and metadata. Use this tool when you need to: - View full agent configuration and settings - Chec",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"agent_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_agents_update_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/agents/update/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "agents",
            "update",
            "by",
            "id"
          ]
        },
        "description": "Updates an existing agent's configuration, settings, and metadata. Use this tool to modify an agent's properties such as name, type, config, tags, scheduler, scripts, or visibility settings. The API o",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"icon\": \"\",\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"type\": \"\",\n  \"config\": {},\n  \"scripts\": {},\n  \"user_id\": 0,\n  \"version\": 0,\n  \"agent_id\": \"\",\n  \"is_public\": false,\n  \"scheduler\": {},\n  \"account_id\": 0,\n  \"created_at\": \"\",\n  \"is_managed\": false,\n  \"project_id\": 0,\n  \"updated_at\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_api_keys_controller_create_api_keys",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/keys/controller/create/api/keys",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "keys",
            "controller",
            "create",
            "api",
            "keys"
          ]
        },
        "description": "Creates a new API key for programmatic access to the Agenty API. The generated API key can be used to authenticate API requests with different permission levels (Owner, Admin, or Manager). The key is ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"role\": \"\",\n  \"is_enabled\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_api_keys_delete_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/keys/delete/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "keys",
            "delete",
            "by",
            "id"
          ]
        },
        "description": "Delete an API key by its unique identifier. Use this tool to permanently revoke access for a specific API key. The key_id can be obtained from the \"Get all API keys\" or \"Create API key\" actions. This ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_api_keys_download",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/keys/download",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "keys",
            "download"
          ]
        },
        "description": "Tool to download all API keys under an account in CSV format. Use when you need a complete list of API keys for export or backup.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_api_keys_get_all",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/keys/get/all",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "keys",
            "get",
            "all"
          ]
        },
        "description": "Tool to retrieve all API keys under an account. Use after authentication when you need to list API keys with pagination and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_api_keys_get_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/keys/get/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "keys",
            "get",
            "by",
            "id"
          ]
        },
        "description": "Retrieves detailed information about a specific API key by its ID. Use this action when you need to: - Get the full details of an API key including its value, role, and status - Verify the existence a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_api_keys_reset_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/keys/reset/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "keys",
            "reset",
            "by",
            "id"
          ]
        },
        "description": "Resets (regenerates) the secret value of an existing API key. The old secret becomes invalid immediately. Important: This action only confirms the reset was successful but does NOT return the new secr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_api_keys_update_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/keys/update/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "keys",
            "update",
            "by",
            "id"
          ]
        },
        "description": "Updates an existing API key's name and role by its unique identifier. This action allows you to modify the display name and permission level of an API key. Only the name and role fields can be updated",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"role\": \"\",\n  \"key_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_capture_screenshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/capture/screenshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "capture",
            "screenshot"
          ]
        },
        "description": "Tool to capture a full-page or visible screenshot of any webpage URL. Use when you need to capture visual representation of a webpage as an image file. The screenshot is captured using browser automat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_capture_screenshot_with_options",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/capture/screenshot/with/options",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "capture",
            "screenshot",
            "with",
            "options"
          ]
        },
        "description": "Tool to capture webpage screenshots with extensive customization options including full-page capture, image format, quality settings, viewport configuration, and post-processing. Use when you need to ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"html\": \"\",\n  \"options\": {},\n  \"blockAds\": false,\n  \"viewport\": {},\n  \"anonymous\": {},\n  \"userAgent\": \"\",\n  \"manipulate\": {},\n  \"gotoOptions\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_change_api_key_status_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/change/api/key/status/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "change",
            "api",
            "key",
            "status",
            "by",
            "id"
          ]
        },
        "description": "Toggles the enabled/disabled status of an API key. This endpoint switches the key between enabled and disabled states - if the key is currently enabled, it will be disabled, and vice versa. Returns a ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_connections_get_all",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/connections/get/all",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "connections",
            "get",
            "all"
          ]
        },
        "description": "Retrieves all connections from your Agenty account. Supports pagination via limit/offset and sorting by field name. Returns an empty list if no connections exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_convert_url_to_pdf",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/convert/url/to/pdf",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "convert",
            "url",
            "to",
            "pdf"
          ]
        },
        "description": "Tool to convert a webpage URL to a PDF document. Use when you need to generate a PDF file from a web page for archival, reporting, or offline viewing purposes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_convert_url_to_pdf_with_options",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/convert/url/to/pdf/with/options",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "convert",
            "url",
            "to",
            "pdf",
            "with",
            "options"
          ]
        },
        "description": "Tool to convert a URL or raw HTML to PDF with customizable options. Use when you need to generate PDFs with specific formatting requirements like custom page sizes, margins, headers/footers, or orient",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"html\": \"\",\n  \"rotate\": 0,\n  \"options\": {},\n  \"anonymous\": {},\n  \"block_ads\": false,\n  \"user_agent\": \"\",\n  \"goto_options\": {},\n  \"emulate_media\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_copy_agent",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/copy/agent",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "copy",
            "agent"
          ]
        },
        "description": "Tool to copy an existing agent by its ID, creating a duplicate with optionally a new name. Use when you need to duplicate an agent's configuration to create a similar agent without starting from scrat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"agent_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_create_workflow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/workflow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "workflow"
          ]
        },
        "description": "Creates a new workflow in Agenty to automate actions based on agent events. Use this to set up automated responses like sending emails, triggering webhooks, or notifications when specific agent events",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"agents\": {},\n  \"actions\": \"\",\n  \"trigger\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_dashboard_get_reports_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dashboard/get/reports/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dashboard",
            "get",
            "reports",
            "usage"
          ]
        },
        "description": "Tool to fetch account reports like pages used by agent, date, and product. Use when analyzing usage over a date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"start\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_delete_list_row",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/list/row",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "list",
            "row"
          ]
        },
        "description": "Tool to delete a specific row from a list by its unique identifier. Use when you need to permanently remove a single row from a list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"list_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_delete_list_rows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/list/rows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "list",
            "rows"
          ]
        },
        "description": "Tool to delete specific rows from a list by their IDs. Use when you need to remove one or more rows from a list by providing their unique identifiers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"list_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_delete_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project"
          ]
        },
        "description": "Tool to delete a project by its ID. Use when you need to permanently remove a project. This action cannot be undone, so ensure the project ID is correct before deletion.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_delete_schedule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/schedule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "schedule"
          ]
        },
        "description": "Tool to delete a schedule for an agent by its agent ID. Use when you need to remove scheduled automation for a specific agent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"agent_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_delete_workflow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/workflow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "workflow"
          ]
        },
        "description": "Tool to delete a workflow by its ID. Use when you need to permanently remove a workflow after confirming it exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"workflow_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_download_agent_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/agent/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "agent",
            "result"
          ]
        },
        "description": "Tool to download agent results by agent ID in CSV, TSV or JSON format. Use when you need to export or analyze agent execution results as a file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"format\": \"\",\n  \"offset\": 0,\n  \"search\": \"\",\n  \"agent_id\": \"\",\n  \"collection\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_download_list_rows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/list/rows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "list",
            "rows"
          ]
        },
        "description": "Tool to download list rows as CSV file. Use when you need to export or backup all rows from a specific list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_download_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "users"
          ]
        },
        "description": "Tool to download users list in CSV format. Use when you need to export or backup the complete list of team members and users.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_download_workflows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/workflows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "workflows"
          ]
        },
        "description": "Tool to download all workflows in CSV format. Use when you need to export or backup all workflows from your account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_extract_browser_structured_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/extract/browser/structured/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "extract",
            "browser",
            "structured",
            "data"
          ]
        },
        "description": "Tool to auto-extract structured data from a webpage including schema.org, RDFa, Microdata, and JSON-LD formats. Use when you need to automatically extract semantic markup from web pages without writin",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"gotoOptions\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_extract_structured_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/extract/structured/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "extract",
            "structured",
            "data"
          ]
        },
        "description": "Tool to auto-extract structured data from a webpage URL. Use when you need to extract schema.org, RDFa, Microdata, or JSON-LD structured data from web pages.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_get_agent_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/agent/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "agent",
            "result"
          ]
        },
        "description": "Tool to get the most recent result data for an agent. Use when you need to retrieve and view the scraped/collected data from an agent's latest execution. Returns result data with pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0,\n  \"search\": \"\",\n  \"agent_id\": \"\",\n  \"collection\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_get_all_team_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/team/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "team",
            "members"
          ]
        },
        "description": "Tool to retrieve all team members (users) under an account. Use after authentication when you need to list team members with pagination, sorting, and search filtering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0,\n  \"search\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_get_browser_redirects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/browser/redirects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "browser",
            "redirects"
          ]
        },
        "description": "Tool to get the complete redirect chain for a URL. Use when you need to trace how a URL redirects, including both server-side (HTTP 3xx redirects) and client-side redirects (JavaScript, meta tags). Re",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_get_job_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/job/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "job",
            "result"
          ]
        },
        "description": "Tool to get the result data from a completed job. Use when you need to retrieve and view the scraped/collected data from a finished job. Returns result data with pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"format\": \"\",\n  \"job_id\": 0,\n  \"offset\": 0,\n  \"search\": \"\",\n  \"collection\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_get_list_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/list/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "list",
            "by",
            "id"
          ]
        },
        "description": "Retrieves detailed information about a specific list by its ID. Use this action when you need to: - Get the full details of a list including its name, description, and metadata - Verify the existence ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_get_list_row_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/list/row/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "list",
            "row",
            "by",
            "id"
          ]
        },
        "description": "Tool to fetch a specific row by its ID from a list. Use when you need to retrieve a single data entry from a list using its unique identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"list_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_get_page_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/page/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "page",
            "content"
          ]
        },
        "description": "Tool to fetch the complete HTML content of any webpage URL. Use this when you need to retrieve the full HTML source code of a page, including content rendered after JavaScript execution. The API navig",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_get_page_content_with_options",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/page/content/with/options",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "page",
            "content",
            "with",
            "options"
          ]
        },
        "description": "Tool to fetch HTML content of a webpage with custom options including ad blocking. Use this when you need to retrieve the full HTML source of a webpage, particularly for web scraping or content analys",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"block_ads\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_get_project_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "by",
            "id"
          ]
        },
        "description": "Retrieves complete details of a specific project by its ID, including name, description, creator information, and timestamps. Use this to get project metadata before adding agents, checking project ex",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_get_redirects_with_options",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/redirects/with/options",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "redirects",
            "with",
            "options"
          ]
        },
        "description": "Tool to get the complete redirect chain of a URL with custom navigation options. Use when you need to trace URL redirects including both server-side (3xx) and client-side redirects (JavaScript, meta t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"gotoOptions\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_get_schedule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/schedule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "schedule"
          ]
        },
        "description": "Tool to retrieve the schedule configuration for a specific agent. Use when you need to check the current scheduling settings for an agent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"agent_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_get_user_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "by",
            "id"
          ]
        },
        "description": "Tool to retrieve detailed information about a user by their ID. Use this to fetch user profile data including email, role, status, and activity timestamps.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_get_workflow_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workflow/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workflow",
            "by",
            "id"
          ]
        },
        "description": "Retrieves complete details of a specific workflow by its ID. Use this to view workflow configuration including agents, triggers, and actions before updating or deleting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"workflow_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_inputs_get_by_agent_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/inputs/get/by/agent/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "inputs",
            "get",
            "by",
            "agent",
            "id"
          ]
        },
        "description": "Retrieves the input configuration for a specific agent by its ID. Returns the input source type (URL, manual list, saved list reference, or another agent's output) and associated configuration details",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"agent_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_inputs_update_by_agent_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/inputs/update/by/agent/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "inputs",
            "update",
            "by",
            "agent",
            "id"
          ]
        },
        "description": "Updates the input configuration for a specific agent in Agenty. This tool modifies where an agent gets its input data from. You can configure the agent to: - Pull from a URL feed (type='url') - Use a ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"data\": \"\",\n  \"type\": \"\",\n  \"field\": \"\",\n  \"agent_id\": \"\",\n  \"collection\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_jobs_download",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/jobs/download",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "jobs",
            "download"
          ]
        },
        "description": "Tool to download all jobs in CSV format. Use when you need a complete list of jobs for export or analysis.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0,\n  \"agent_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_jobs_download_files_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/jobs/download/files/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "jobs",
            "download",
            "files",
            "by",
            "id"
          ]
        },
        "description": "Tool to download output files by job ID. Use when you need to fetch a specific output file after a job completes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"job_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_jobs_download_result_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/jobs/download/result/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "jobs",
            "download",
            "result",
            "by",
            "id"
          ]
        },
        "description": "Tool to download the agent output result by job ID. Use when you need to fetch the final output of a completed job in CSV, TSV, or JSON format.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"format\": \"\",\n  \"job_id\": 0,\n  \"offset\": 0,\n  \"collection\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_jobs_get_all",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/jobs/get/all",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "jobs",
            "get",
            "all"
          ]
        },
        "description": "Tool to fetch all jobs under an account. Use when you need to view and filter the list of jobs with pagination and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0,\n  \"agent_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_jobs_get_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/jobs/get/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "jobs",
            "get",
            "by",
            "id"
          ]
        },
        "description": "Retrieves comprehensive details about a specific job including its status, progress metrics (pages processed/succeeded/failed), timing information (created/started/completed times), resource consumpti",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_jobs_get_logs_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/jobs/get/logs/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "jobs",
            "get",
            "logs",
            "by",
            "id"
          ]
        },
        "description": "Tool to fetch logs for a given job by its ID. Use when you need to review or debug job execution logs with pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"job_id\": \"\",\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_jobs_list_files_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/jobs/list/files/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "jobs",
            "list",
            "files",
            "by",
            "id"
          ]
        },
        "description": "Lists all output files generated by a specific job. Returns file names and sizes for available downloads including CSV/JSON/TSV data exports and compressed logs. Use this after a job completes to disc",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_jobs_start",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/jobs/start",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "jobs",
            "start"
          ]
        },
        "description": "Tool to start a new agent job. Use when you need to trigger execution of an existing agent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"agent_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_jobs_stop_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/jobs/stop/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "jobs",
            "stop",
            "by",
            "id"
          ]
        },
        "description": "Tool to stop a running job by job ID. Use when you need to halt an in-progress job before it completes. Confirm the job ID beforehand to avoid unintended stops.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_lists_clear_rows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lists/clear/rows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lists",
            "clear",
            "rows"
          ]
        },
        "description": "Tool to clear all rows in a list by its ID. Use when you need to wipe out all data in a list before re-populating (e.g., \"Clear all rows in list 123\").",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_lists_controller_create_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lists/controller/create/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lists",
            "controller",
            "create",
            "list"
          ]
        },
        "description": "Tool to create a new list. Use after preparing the list name and optional description. Example: \"Create a list named 'Contacts' with description 'Potential leads'.\"",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_lists_delete_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lists/delete/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lists",
            "delete",
            "by",
            "id"
          ]
        },
        "description": "Tool to delete a specific list by its ID. Use when you need to permanently remove a list after confirming it exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_lists_download",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lists/download",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lists",
            "download"
          ]
        },
        "description": "Tool to download all lists in CSV format. Use when you need a complete set of lists for export or backup.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_lists_get_all",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lists/get/all",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lists",
            "get",
            "all"
          ]
        },
        "description": "Tool to retrieve all lists under an account. Use after authentication when you need to list lists with pagination and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_lists_get_rows_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lists/get/rows/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lists",
            "get",
            "rows",
            "by",
            "id"
          ]
        },
        "description": "Tool to fetch all rows in a specified list. Use when you need to retrieve all data entries from a list with optional pagination and sorting. Example: \"Fetch rows from list '61db...' with limit=50\".",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0,\n  \"list_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_lists_update_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lists/update/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lists",
            "update",
            "by",
            "id"
          ]
        },
        "description": "Tool to update a list's name and optionally description by list ID. The name field is always required. Use when you need to modify list metadata after confirming its ID. Example: \"Update list 123 with",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"list_id\": 0,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_lists_upload_csv",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lists/upload/csv",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lists",
            "upload",
            "csv"
          ]
        },
        "description": "Tool to upload a CSV file to an Agenty list for bulk import of data rows. Use this action when you need to: - Import multiple rows of data into an existing list from a CSV file - Bulk update list data",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"list_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_patch_workflow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/patch/workflow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "patch",
            "workflow"
          ]
        },
        "description": "Tool to partially update a workflow by ID. Use when you need to update specific fields of a workflow without replacing the entire workflow object. This action performs a PATCH operation, allowing you ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_projects_add_agents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/projects/add/agents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "projects",
            "add",
            "agents"
          ]
        },
        "description": "Add one or more agents to an Agenty project to organize and group related agents together. This action associates agents with a project, allowing better organization and management of your automation ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"agent_ids\": \"\",\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_projects_controller_create_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/projects/controller/create/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "projects",
            "controller",
            "create",
            "project"
          ]
        },
        "description": "Creates a new project in Agenty. Use this to initialize a project with a name and optional description.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_projects_get_all",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/projects/get/all",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "projects",
            "get",
            "all"
          ]
        },
        "description": "Retrieve all projects in the authenticated user's account. Returns a paginated list of projects with metadata (total count, pagination info). Use this to discover available projects, check project exi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_remove_agent_from_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/agent/from/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "agent",
            "from",
            "project"
          ]
        },
        "description": "Remove an agent from an Agenty project. Use when you need to disassociate an agent from a project while keeping both the agent and project intact. The agent will no longer be part of the project's org",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"agent_id\": \"\",\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_scrape_webpage_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/scrape/webpage/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "scrape",
            "webpage",
            "data"
          ]
        },
        "description": "Tool to scrape data from any webpage using jQuery/CSS selectors. Use when you need to extract specific data from web pages by defining jQuery selector expressions. Each query field maps a name to a jQ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"debug\": {},\n  \"query\": {},\n  \"blockAds\": false,\n  \"userAgent\": \"\",\n  \"gotoOptions\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_toggle_schedule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/toggle/schedule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "toggle",
            "schedule"
          ]
        },
        "description": "Tool to toggle schedule on/off for an agent. Use when you need to enable or disable an agent's scheduled execution without modifying other agent settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"enabled\": false,\n  \"agent_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_transfer_agent_ownership",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/transfer/agent/ownership",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "transfer",
            "agent",
            "ownership"
          ]
        },
        "description": "Tool to transfer agent ownership to another Agenty account. Use when you need to move an agent to a different user's account by specifying their email address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"agent_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_update_list_row",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/list/row",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "list",
            "row"
          ]
        },
        "description": "Tool to update a specific row in a list by list ID and row ID. Use when you need to modify existing data in a list row. The row_data must include the '_id' field and any column fields (col1, col2, etc",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"list_id\": \"\",\n  \"row_data\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_update_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "project"
          ]
        },
        "description": "Update an existing project's name and description in Agenty. Use this to modify project details such as changing the project name or updating its description.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_update_schedule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/schedule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "schedule"
          ]
        },
        "description": "Updates the schedule configuration for a specific agent. Use when you need to modify how often an agent runs automatically.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"agent_id\": \"\",\n  \"frequency\": 0,\n  \"expression\": \"\",\n  \"is_enabled\": false,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_update_user_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/user/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "user",
            "by",
            "id"
          ]
        },
        "description": "Tool to update a user's information by user ID. Use this to modify user properties including email, role, status, name, and subscription settings. Email, role, and status are required fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"role\": \"\",\n  \"email\": \"\",\n  \"avatar\": \"\",\n  \"status\": \"\",\n  \"user_id\": \"\",\n  \"is_email_verified\": false,\n  \"is_email_subscribed\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "agenty_update_workflow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/workflow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "workflow"
          ]
        },
        "description": "Tool to update an existing workflow's configuration by workflow ID. Use this to modify workflow properties including name, agent selection, trigger conditions, and actions to execute. Workflows automa",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"agents\": {},\n  \"actions\": \"\",\n  \"trigger\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}