Skip to content

Commit f3185a9

Browse files
Update limit for retrieve_connections
1 parent 4e58410 commit f3185a9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/tools/retrieve-connections.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class RetrieveConnectionsTool extends OperationTool<
1515
public override readonly name = 'retrieve_connections';
1616
public override readonly operationName = OPERATION_NAME.retrieveConnections;
1717
protected override readonly schema = z.object({
18-
limit: z.number().min(1).max(1000).optional(),
18+
limit: z.number().min(1).max(500).optional(),
1919
filter: z
2020
.object({
2121
firstName: z.string().optional(),
@@ -41,7 +41,7 @@ export class RetrieveConnectionsTool extends OperationTool<
4141
limit: {
4242
type: 'number',
4343
description:
44-
'Optional. Number of connections to return. Defaults to 500, with a maximum value of 1000.',
44+
'Optional. Number of connections to return. Defaults to 10, with a maximum value of 500.',
4545
},
4646
filter: {
4747
type: 'object',

0 commit comments

Comments
 (0)