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 { /**