diff options
| author | Olcan <[email protected]> | 2025-05-30 14:12:51 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-30 14:12:51 -0700 |
| commit | 4225567303a67ba1dec4e5b558df30265926e079 (patch) | |
| tree | 5781c249b2a1e1e11fe66b2776672bba40fc3417 /packages/server/src/tools/mcp-tool.ts | |
| parent | 1a5fd2ccb2c96931921dfddbc64639ddf946980c (diff) | |
disable markdown for discovered (mcp) tools (#630)
Diffstat (limited to 'packages/server/src/tools/mcp-tool.ts')
| -rw-r--r-- | packages/server/src/tools/mcp-tool.ts | 9 |
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> { |
