summaryrefslogtreecommitdiff
path: root/packages/server/src/tools/mcp-tool.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/server/src/tools/mcp-tool.ts')
-rw-r--r--packages/server/src/tools/mcp-tool.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/packages/server/src/tools/mcp-tool.ts b/packages/server/src/tools/mcp-tool.ts
index 05ad750c..2a561179 100644
--- a/packages/server/src/tools/mcp-tool.ts
+++ b/packages/server/src/tools/mcp-tool.ts
@@ -27,7 +27,14 @@ When called, this tool will invoke the \`tools/call\` method for tool name \`${n
MCP servers can be configured in project or user settings.
Returns the MCP server response as a json string.
`;
- super(name, name, description, parameterSchema);
+ super(
+ name,
+ name,
+ description,
+ parameterSchema,
+ false, // isOutputMarkdown
+ false, // canUpdateOutput
+ );
}
async execute(params: ToolParams): Promise<ToolResult> {