MCPcopy Index your code
hub / github.com/modelcontextprotocol/modelcontextprotocol / Request

Interface Request

schema/2025-06-18/schema.ts:34–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32
33/** @internal */
34export interface Request {
35 method: string;
36 params?: {
37 /**
38 * See [General fields: `_meta`](/specification/2025-06-18/basic/index#meta) for notes on `_meta` usage.
39 */
40 _meta?: {
41 /**
42 * If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
43 */
44 progressToken?: ProgressToken;
45 [key: string]: unknown;
46 };
47 [key: string]: unknown;
48 };
49}
50
51/** @internal */
52export interface Notification {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected