Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/server/stdio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/shared/transport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
/**
Expand Down