From 890e5827bee75fc17cc6b7d47841327bc05a84cd Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sat, 1 Nov 2025 08:36:16 +0800 Subject: [PATCH] [Docs] Fix typo Replaced incorrect "a MCP" with "an MCP" two source code comments to match the correct usage based on pronunciation. --- src/server/stdio.ts | 2 +- src/shared/transport.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/stdio.ts b/src/server/stdio.ts index ece9d0ae4..e552af0fa 100644 --- a/src/server/stdio.ts +++ b/src/server/stdio.ts @@ -5,7 +5,7 @@ import { JSONRPCMessage } from '../types.js'; import { Transport } from '../shared/transport.js'; /** - * Server transport for stdio: this communicates with a MCP client by reading from the current process' stdin and writing to stdout. + * Server transport for stdio: this communicates with an MCP client by reading from the current process' stdin and writing to stdout. * * This transport is only available in Node.js environments. */ diff --git a/src/shared/transport.ts b/src/shared/transport.ts index c64f622b7..5faf72786 100644 --- a/src/shared/transport.ts +++ b/src/shared/transport.ts @@ -26,7 +26,7 @@ export type TransportSendOptions = { onresumptiontoken?: (token: string) => void; }; /** - * Describes the minimal contract for a MCP transport that a client or server can communicate over. + * Describes the minimal contract for an MCP transport that a client or server can communicate over. */ export interface Transport { /**