Skip to content

Commit 63d6cd7

Browse files
chore(codegen): internal codegen update
1 parent e2afa83 commit 63d6cd7

File tree

2 files changed

+1
-49
lines changed

2 files changed

+1
-49
lines changed

packages/mcp-server/src/docs-search-tool.ts

Lines changed: 0 additions & 47 deletions
This file was deleted.

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import {
2121
} from './compat';
2222
import { dynamicTools } from './dynamic-tools';
2323
import { codeTool } from './code-tool';
24-
import docsSearchTool from './docs-search-tool';
2524
import { McpOptions } from './options';
2625

2726
export { McpOptions } from './options';
@@ -160,7 +159,7 @@ export async function selectTools(endpoints: Endpoint[], options?: McpOptions):
160159
} else if (options?.includeDynamicTools) {
161160
includedTools = dynamicTools(endpoints);
162161
} else if (options?.includeCodeTools) {
163-
includedTools = [await codeTool(), docsSearchTool];
162+
includedTools = [await codeTool()];
164163
} else {
165164
includedTools = endpoints;
166165
}

0 commit comments

Comments
 (0)