Skip to content

Commit 9da0061

Browse files
committed
fix(tools): add empty properties to tools without inputs
1 parent 2f3c497 commit 9da0061

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

src/endpoints/enums.mcp.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export const tools = [
1313
},
1414
inputSchema: {
1515
type: 'object',
16+
properties: {},
1617
},
1718
execute: async (make: Make) => {
1819
return await make.enums.countries();
@@ -30,6 +31,7 @@ export const tools = [
3031
},
3132
inputSchema: {
3233
type: 'object',
34+
properties: {},
3335
},
3436
execute: async (make: Make) => {
3537
return await make.enums.regions();
@@ -47,6 +49,7 @@ export const tools = [
4749
},
4850
inputSchema: {
4951
type: 'object',
52+
properties: {},
5053
},
5154
execute: async (make: Make) => {
5255
return await make.enums.timezones();

src/endpoints/organizations.mcp.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export const tools = [
1313
},
1414
inputSchema: {
1515
type: 'object',
16+
properties: {},
1617
},
1718
execute: async (make: Make) => {
1819
return await make.organizations.list();

src/endpoints/sdk/apps.mcp.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export const tools = [
1414
},
1515
inputSchema: {
1616
type: 'object',
17+
properties: {}
1718
},
1819
execute: async (make: Make) => {
1920
return await make.sdk.apps.list();

src/endpoints/users.mcp.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export const tools = [
1313
},
1414
inputSchema: {
1515
type: 'object',
16+
properties: {},
1617
},
1718
execute: async (make: Make) => {
1819
return await make.users.me();

0 commit comments

Comments
 (0)