Skip to content

Commit 890e582

Browse files
committed
[Docs] Fix typo
Replaced incorrect "a MCP" with "an MCP" two source code comments to match the correct usage based on pronunciation.
1 parent 783d53b commit 890e582

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/server/stdio.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { JSONRPCMessage } from '../types.js';
55
import { Transport } from '../shared/transport.js';
66

77
/**
8-
* Server transport for stdio: this communicates with a MCP client by reading from the current process' stdin and writing to stdout.
8+
* Server transport for stdio: this communicates with an MCP client by reading from the current process' stdin and writing to stdout.
99
*
1010
* This transport is only available in Node.js environments.
1111
*/

src/shared/transport.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export type TransportSendOptions = {
2626
onresumptiontoken?: (token: string) => void;
2727
};
2828
/**
29-
* Describes the minimal contract for a MCP transport that a client or server can communicate over.
29+
* Describes the minimal contract for an MCP transport that a client or server can communicate over.
3030
*/
3131
export interface Transport {
3232
/**

0 commit comments

Comments
 (0)