You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/tools/help.ts
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ export function registerHelpTool(server: McpServer): void {
13
13
'dynadot_help',
14
14
{
15
15
description:
16
-
'Discover available tools and actions. Use query: "tools" to list all tools, "actions" with a tool name to list actions, "examples" for usage examples.',
16
+
'Discover available tools and operations. Use query: "tools" to list all tools, "actions" with a tool name to list operations, "examples" for usage examples.',
17
17
inputSchema,
18
18
},
19
19
async(input)=>{
@@ -37,6 +37,10 @@ export function registerHelpTool(server: McpServer): void {
37
37
tools,
38
38
standalone: [
39
39
{name: 'check_domain',description: 'Check single domain availability'},
40
+
{
41
+
name: 'generate_domain_ideas',
42
+
description: 'Generate available domain ideas from keywords',
43
+
},
40
44
{name: 'dynadot_help',description: 'This help tool'},
41
45
],
42
46
},
@@ -102,7 +106,7 @@ export function registerHelpTool(server: McpServer): void {
102
106
{
103
107
description: 'List all domains',
104
108
tool: 'dynadot_domain',
105
-
input: {action: 'list'},
109
+
input: {operation: 'list'},
106
110
},
107
111
{
108
112
description: 'Check domain availability',
@@ -112,7 +116,7 @@ export function registerHelpTool(server: McpServer): void {
0 commit comments