Skip to content

Commit 7341c9a

Browse files
committed
fix lint
1 parent 80b0bab commit 7341c9a

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/examples/client/streamableHttpWithSseFallbackClient.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ async function main(): Promise<void> {
3232

3333
let client: Client;
3434
let transport: StreamableHTTPClientTransport | SSEClientTransport;
35-
let transportType: 'streamable-http' | 'sse';
3635

3736
try {
3837
// Try connecting with automatic transport detection
3938
const connection = await connectWithBackwardsCompatibility(serverUrl);
4039
client = connection.client;
4140
transport = connection.transport;
42-
transportType = connection.transportType;
4341

4442
// Set up notification handler
4543
client.setNotificationHandler(LoggingMessageNotificationSchema, (notification) => {

src/examples/server/simpleSseServer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import express, { Request, Response } from 'express';
2-
import { randomUUID } from "node:crypto";
32
import { McpServer } from '../../server/mcp.js';
43
import { SSEServerTransport } from '../../server/sse.js';
54
import { z } from 'zod';

0 commit comments

Comments
 (0)