File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import { Server } from '@modelcontextprotocol/sdk/server/index.js';
22import packageJSON from '../package.json' assert { type : 'json' } ;
33import { CallToolRequestSchema , ListToolsRequestSchema } from '@modelcontextprotocol/sdk/types.js' ;
44import { Tool } from './tools/types' ;
5- import { helloWorldTool } from './tools/hello-world' ;
65import z from 'zod' ;
76import { logger } from './utils/logger' ;
87import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js' ;
@@ -11,7 +10,7 @@ import { searchTool } from './tools/search';
1110import { logsTool } from './tools/logs' ;
1211
1312// eslint-disable-next-line @typescript-eslint/no-explicit-any
14- const tools : Tool < any > [ ] = [ helloWorldTool , searchTool , logsTool ] ;
13+ const tools : Tool < any > [ ] = [ searchTool , logsTool ] ;
1514
1615export const createServer = ( ) : Server => {
1716 const server = new Server (
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments