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
The above is a summary of the previous conversation. Please continue from where you left off without asking the user any questions. Resume work directly; do not confirm the summary content, do not recap previous work, and do not start with phrases like "I will continue".
@@ -21,7 +27,7 @@ export function createMCPUtilityTools(
21
27
if(hasPrompts){
22
28
tools.push(newDynamicStructuredTool({
23
29
name: "mcp_prompts",
24
-
description: "List or get prompt templates from MCP servers. Use action 'list' to discover available prompts, or 'get' to render a specific prompt by name.",
30
+
description: descs.prompts,
25
31
schema: z.object({
26
32
action: z.enum(["list","get"]).describe("'list' to list prompts, 'get' to render a specific prompt"),
27
33
name: z.string().optional().describe("Prompt name (required for 'get')"),
@@ -50,7 +56,7 @@ export function createMCPUtilityTools(
50
56
if(hasResources){
51
57
tools.push(newDynamicStructuredTool({
52
58
name: "mcp_resources",
53
-
description: "List or read resources from MCP servers. Use action 'list' to discover available resources, or 'read' to fetch content by URI.",
59
+
description: descs.resources,
54
60
schema: z.object({
55
61
action: z.enum(["list","read"]).describe("'list' to list resources, 'read' to fetch resource content"),
56
62
uri: z.string().optional().describe("Resource URI (required for 'read')"),
0 commit comments