Skip to content

Commit 25a04e6

Browse files
committed
Enhance ToolServer API descriptions to include additional optional filters for meetings and team members
- Updated descriptions for "List Meetings" and "Search Meetings" to include the new optional filter: include_crm_matches (boolean). - Clarified the description for "List Team Members" to specify filtering by team name.
1 parent e551e86 commit 25a04e6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/tools/server.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ export class ToolServer {
4848
{
4949
title: "List Meetings",
5050
description:
51-
"List Fathom meetings with optional filters: limit (1-100), cursor (pagination), " +
51+
"List Fathom meetings with optional filters: cursor (pagination), " +
5252
"created_after, created_before (ISO timestamps), calendar_invitees_domains (company domains), " +
5353
"calendar_invitees_domains_type (all/only_internal/one_or_more_external), " +
54-
"teams (team names), recorded_by (recorder emails), include_action_items (boolean)",
54+
"teams (team names), recorded_by (recorder emails), include_action_items (boolean), include_crm_matches (boolean)",
5555
inputSchema: listMeetingsReqSchema.shape,
5656
},
5757
async (args, extra) => {
@@ -66,8 +66,9 @@ export class ToolServer {
6666
title: "Search Meetings",
6767
description:
6868
"Search Fathom meetings by title. Required: query (search term). " +
69-
"Optional filters: limit (1-100), created_after, created_before (ISO timestamps), " +
70-
"calendar_invitees_domains, calendar_invitees_domains_type, teams, recorded_by",
69+
"Optional filters: cursor (pagination), created_after, created_before (ISO timestamps), " +
70+
"calendar_invitees_domains, calendar_invitees_domains_type, teams, recorded_by, " +
71+
"include_action_items (boolean), include_crm_matches (boolean)",
7172
inputSchema: searchMeetingsReqSchema.shape,
7273
},
7374
async (args, extra) => {
@@ -121,7 +122,7 @@ export class ToolServer {
121122
{
122123
title: "List Team Members",
123124
description:
124-
"List members of a Fathom team. Optional: team_name to filter by team, cursor for pagination.",
125+
"List members of a Fathom team. Optional: team to filter by team name, cursor for pagination.",
125126
inputSchema: listTeamMembersReqSchema.shape,
126127
},
127128
async (args, extra) => {

0 commit comments

Comments
 (0)