Skip to content

Commit c6c9ee4

Browse files
committed
remove hello world
1 parent 51883a6 commit c6c9ee4

2 files changed

Lines changed: 1 addition & 22 deletions

File tree

src/server.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { Server } from '@modelcontextprotocol/sdk/server/index.js';
22
import packageJSON from '../package.json' assert { type: 'json' };
33
import { CallToolRequestSchema, ListToolsRequestSchema } from '@modelcontextprotocol/sdk/types.js';
44
import { Tool } from './tools/types';
5-
import { helloWorldTool } from './tools/hello-world';
65
import z from 'zod';
76
import { logger } from './utils/logger';
87
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
@@ -11,7 +10,7 @@ import { searchTool } from './tools/search';
1110
import { 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

1615
export const createServer = (): Server => {
1716
const server = new Server(

src/tools/hello-world.ts

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

0 commit comments

Comments
 (0)