Gorgias Automation by composiohq/awesome-claude-skills
npx skills add https://github.com/composiohq/awesome-claude-skills --skill 'Gorgias Automation'直接在 Claude Code 中自动化您的 Gorgias 客服台操作。创建、更新和分派支持工单,管理客户,并组织您的支持团队——所有这些都无需离开终端。
工具包文档: composio.dev/toolkits/gorgias
https://rube.app/mcp检索工单,可按状态、渠道、受理人、日期范围等进行筛选。
工具: GORGIAS_LIST_TICKETS
列出过去 7 天内通过电子邮件渠道创建的所有未解决工单
关键参数:
status —— 按工单状态筛选(例如:"open", "closed")channel —— 按渠道筛选(例如:"email", "chat")广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
assignee_user_id / assignee_team_id —— 按分配的客服或团队筛选created_from / created_to —— ISO 日期范围筛选器limit (最大 100) / offset —— 分页控制order_by / order_dir —— 排序选项创建新工单或更新现有工单,包括分配、优先级和状态更改。
工具: GORGIAS_CREATE_TICKET, GORGIAS_UPDATE_TICKET, GORGIAS_GET_TICKET
为客户 12345 创建一个关于缺失订单的高优先级工单,主题为 "Order #9876 not delivered"
GORGIAS_CREATE_TICKET 需要 customer_id;接受 subject、status、priority、channel、messages、tagsGORGIAS_UPDATE_TICKET 需要 ticket_id;所有其他字段都是可选的局部更新GORGIAS_GET_TICKET 通过 ticket_id 检索完整的工单详情为工单添加标签以进行分类、路由和报告。
工具: GORGIAS_ADD_TICKET_TAGS, GORGIAS_LIST_TICKET_TAGS
将标签 101 和 202 添加到工单 5678,然后显示该工单的所有标签
GORGIAS_ADD_TICKET_TAGS 需要 ticket_id 和 tag_ids(整数数组)GORGIAS_LIST_TICKET_TAGS 需要 ticket_id 来检索当前标签创建新客户或合并重复的客户记录。
工具: GORGIAS_CREATE_CUSTOMER, GORGIAS_MERGE_CUSTOMERS, GORGIAS_LIST_CUSTOMERS
创建一个名为 "Jane Doe" 的新客户,邮箱为 jane@example.com,并带有电话渠道
GORGIAS_CREATE_CUSTOMER 需要 name;接受 email、channels(包含 type 和 value 的数组)、external_id、address、dataGORGIAS_MERGE_CUSTOMERS 需要 source_customer_id 和 target_customer_id —— 源客户将被合并到目标客户中GORGIAS_LIST_CUSTOMERS 检索客户,并提供筛选选项列出团队、检索账户信息以及检查工单自定义字段。
工具: GORGIAS_LIST_TEAMS, GORGIAS_GET_TEAM, GORGIAS_GET_ACCOUNT, GORGIAS_LIST_TICKET_FIELD_VALUES
显示我们 Gorgias 账户中的所有支持团队
GORGIAS_GET_ACCOUNT 返回账户级别的指标和配置GORGIAS_LIST_TEAMS / GORGIAS_GET_TEAM 管理团队查找GORGIAS_LIST_TICKET_FIELD_VALUES 返回指定工单的自定义字段值监控工单活动和客户事件历史。
工具: GORGIAS_LIST_EVENTS
列出最近的事件,查看我们的支持队列中发生了哪些活动
GORGIAS_LIST_EVENTS 提供活动时间线,并带有筛选选项GORGIAS_LIST_TICKETS 使用 limit/offset 分页。如果不循环遍历所有页面,将会遗漏较旧的工单并产生不完整的数据。GORGIAS_LIST_TICKETS 上缺失或过于宽泛的筛选条件可能导致导出数据量过大或遗漏所需的报告时间窗口。对于有时间限制的查询,请始终设置 created_from/created_to。GORGIAS_LIST_TICKET_FIELD_VALUES 才能包含它们。GORGIAS_LIST_TICKETS 及相关端点的高容量导出可能会触及 Gorgias 的速率限制。请添加退避机制并从最后一个偏移量恢复。| 工具标识 | 描述 |
|---|---|
GORGIAS_LIST_TICKETS | 列出工单(可按状态、渠道、日期、受理人筛选) |
GORGIAS_GET_TICKET | 按 ID 检索特定工单 |
GORGIAS_CREATE_TICKET | 创建新工单(需要 customer_id) |
GORGIAS_UPDATE_TICKET | 更新工单字段(需要 ticket_id) |
GORGIAS_ADD_TICKET_TAGS | 为工单添加标签 |
GORGIAS_LIST_TICKET_TAGS | 列出工单上的所有标签 |
GORGIAS_LIST_TICKET_FIELD_VALUES | 列出工单的自定义字段值 |
GORGIAS_CREATE_CUSTOMER | 创建新客户(需要 name) |
GORGIAS_MERGE_CUSTOMERS | 合并两个客户记录 |
GORGIAS_LIST_CUSTOMERS | 列出客户(可筛选) |
GORGIAS_LIST_TEAMS | 列出所有团队 |
GORGIAS_GET_TEAM | 检索特定团队 |
GORGIAS_GET_ACCOUNT | 检索账户信息 |
GORGIAS_LIST_EVENTS | 列出活动事件(可筛选) |
由 Composio 提供支持
每周安装量
0
代码仓库
GitHub 星标数
42.0K
首次出现
Jan 1, 1970
安全审计
Automate your Gorgias helpdesk operations directly from Claude Code. Create, update, and triage support tickets, manage customers, and organize your support team -- all without leaving your terminal.
Toolkit docs: composio.dev/toolkits/gorgias
https://rube.app/mcpRetrieve tickets with filtering by status, channel, assignee, date range, and more.
Tool: GORGIAS_LIST_TICKETS
List all open tickets from the email channel created in the last 7 days
Key parameters:
status -- filter by ticket status (e.g., "open", "closed")channel -- filter by channel (e.g., "email", "chat")assignee_user_id / assignee_team_id -- filter by assigned agent or teamcreated_from / created_to -- ISO date range filterslimit (max 100) / offset -- pagination controlsorder_by / order_dir -- sorting optionsCreate new tickets or update existing ones with assignment, priority, and status changes.
Tools: GORGIAS_CREATE_TICKET, GORGIAS_UPDATE_TICKET, GORGIAS_GET_TICKET
Create a high-priority ticket for customer 12345 about a missing order with subject "Order #9876 not delivered"
GORGIAS_CREATE_TICKET requires customer_id; accepts subject, status, priority, channel, messages, tagsGORGIAS_UPDATE_TICKET requires ticket_id; all other fields are optional partial updatesGORGIAS_GET_TICKET retrieves full ticket details by Add tags to tickets for categorization, routing, and reporting.
Tools: GORGIAS_ADD_TICKET_TAGS, GORGIAS_LIST_TICKET_TAGS
Add tags 101 and 202 to ticket 5678, then show me all tags on that ticket
GORGIAS_ADD_TICKET_TAGS requires ticket_id and tag_ids (array of integers)GORGIAS_LIST_TICKET_TAGS requires ticket_id to retrieve current tagsCreate new customers or merge duplicate customer records.
Tools: GORGIAS_CREATE_CUSTOMER, GORGIAS_MERGE_CUSTOMERS, GORGIAS_LIST_CUSTOMERS
Create a new customer named "Jane Doe" with email jane@example.com and phone channel
GORGIAS_CREATE_CUSTOMER requires name; accepts email, channels (array with type and value), external_id, address, dataGORGIAS_MERGE_CUSTOMERS requires source_customer_id and -- source is merged into targetList teams, retrieve account info, and inspect ticket custom fields.
Tools: GORGIAS_LIST_TEAMS, GORGIAS_GET_TEAM, GORGIAS_GET_ACCOUNT, GORGIAS_LIST_TICKET_FIELD_VALUES
Show me all support teams in our Gorgias account
GORGIAS_GET_ACCOUNT returns account-level metrics and configurationGORGIAS_LIST_TEAMS / GORGIAS_GET_TEAM manage team lookupGORGIAS_LIST_TICKET_FIELD_VALUES returns custom field values for a given ticketMonitor ticket activity and customer event history.
Tools: GORGIAS_LIST_EVENTS
List recent events to see what activity has happened across our support queue
GORGIAS_LIST_EVENTS provides an activity timeline with filtering optionsGORGIAS_LIST_TICKETS uses limit/offset pagination. Failing to loop through pages will miss older tickets and produce incomplete data.GORGIAS_LIST_TICKETS can overload the export or omit the desired reporting window. Always set created_from/created_to for time-bound queries.GORGIAS_LIST_TICKET_FIELD_VALUES explicitly to include them.GORGIAS_LIST_TICKETS and related endpoints can hit Gorgias rate limits. Add backoff and resume from the last offset.| Tool Slug | Description |
|---|---|
GORGIAS_LIST_TICKETS | List tickets with filters (status, channel, date, assignee) |
GORGIAS_GET_TICKET | Retrieve a specific ticket by ID |
GORGIAS_CREATE_TICKET | Create a new ticket (requires customer_id) |
GORGIAS_UPDATE_TICKET | Update ticket fields (requires ticket_id) |
GORGIAS_ADD_TICKET_TAGS |
Powered byComposio
Weekly Installs
0
Repository
GitHub Stars
42.0K
First Seen
Jan 1, 1970
Security Audits
AI 代码实施计划编写技能 | 自动化开发任务分解与 TDD 流程规划工具
41,400 周安装
ticket_idtarget_customer_idGORGIAS_LIST_CUSTOMERS retrieves customers with filtering options| Add tags to a ticket |
GORGIAS_LIST_TICKET_TAGS | List all tags on a ticket |
GORGIAS_LIST_TICKET_FIELD_VALUES | List custom field values for a ticket |
GORGIAS_CREATE_CUSTOMER | Create a new customer (requires name) |
GORGIAS_MERGE_CUSTOMERS | Merge two customer records |
GORGIAS_LIST_CUSTOMERS | List customers with filters |
GORGIAS_LIST_TEAMS | List all teams |
GORGIAS_GET_TEAM | Retrieve a specific team |
GORGIAS_GET_ACCOUNT | Retrieve account information |
GORGIAS_LIST_EVENTS | List activity events with filters |