UNPKG

@modelcontextprotocol/sdk

Version:

Model Context Protocol implementation for TypeScript

1,690 lines (1,689 loc) 68.5 kB
/** * This file is automatically generated from the Model Context Protocol specification. * * Source: https://github.com/modelcontextprotocol/modelcontextprotocol * Pulled from: https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/main/schema/draft/schema.ts * Last updated from commit: 35fa160caf287a9c48696e3ae452c0645c713669 * * DO NOT EDIT THIS FILE MANUALLY. Changes will be overwritten by automated updates. * To update this file, run: npm run fetch:spec-types */ /** * Refers to any valid JSON-RPC object that can be decoded off the wire, or encoded to be sent. * * @category JSON-RPC */ export type JSONRPCMessage = JSONRPCRequest | JSONRPCNotification | JSONRPCResponse; /** @internal */ export declare const LATEST_PROTOCOL_VERSION = "DRAFT-2026-v1"; /** @internal */ export declare const JSONRPC_VERSION = "2.0"; /** * A progress token, used to associate progress notifications with the original request. * * @category Common Types */ export type ProgressToken = string | number; /** * An opaque token used to represent a cursor for pagination. * * @category Common Types */ export type Cursor = string; /** * Common params for any task-augmented request. * * @internal */ export interface TaskAugmentedRequestParams extends RequestParams { /** * If specified, the caller is requesting task-augmented execution for this request. * The request will return a CreateTaskResult immediately, and the actual result can be * retrieved later via tasks/result. * * Task augmentation is subject to capability negotiation - receivers MUST declare support * for task augmentation of specific request types in their capabilities. */ task?: TaskMetadata; } /** * Common params for any request. * * @internal */ export interface RequestParams { /** * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. */ _meta?: { /** * 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. */ progressToken?: ProgressToken; [key: string]: unknown; }; } /** @internal */ export interface Request { method: string; params?: { [key: string]: any; }; } /** @internal */ export interface NotificationParams { /** * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. */ _meta?: { [key: string]: unknown; }; } /** @internal */ export interface Notification { method: string; params?: { [key: string]: any; }; } /** * @category Common Types */ export interface Result { /** * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. */ _meta?: { [key: string]: unknown; }; [key: string]: unknown; } /** * @category Common Types */ export interface Error { /** * The error type that occurred. */ code: number; /** * A short description of the error. The message SHOULD be limited to a concise single sentence. */ message: string; /** * Additional information about the error. The value of this member is defined by the sender (e.g. detailed error information, nested errors etc.). */ data?: unknown; } /** * A uniquely identifying ID for a request in JSON-RPC. * * @category Common Types */ export type RequestId = string | number; /** * A request that expects a response. * * @category JSON-RPC */ export interface JSONRPCRequest extends Request { jsonrpc: typeof JSONRPC_VERSION; id: RequestId; } /** * A notification which does not expect a response. * * @category JSON-RPC */ export interface JSONRPCNotification extends Notification { jsonrpc: typeof JSONRPC_VERSION; } /** * A successful (non-error) response to a request. * * @category JSON-RPC */ export interface JSONRPCResultResponse { jsonrpc: typeof JSONRPC_VERSION; id: RequestId; result: Result; } /** * A response to a request that indicates an error occurred. * * @category JSON-RPC */ export interface JSONRPCErrorResponse { jsonrpc: typeof JSONRPC_VERSION; id?: RequestId; error: Error; } /** * A response to a request, containing either the result or error. */ export type JSONRPCResponse = JSONRPCResultResponse | JSONRPCErrorResponse; export declare const PARSE_ERROR = -32700; export declare const INVALID_REQUEST = -32600; export declare const METHOD_NOT_FOUND = -32601; export declare const INVALID_PARAMS = -32602; export declare const INTERNAL_ERROR = -32603; /** @internal */ export declare const URL_ELICITATION_REQUIRED = -32042; /** * An error response that indicates that the server requires the client to provide additional information via an elicitation request. * * @internal */ export interface URLElicitationRequiredError extends Omit<JSONRPCErrorResponse, "error"> { error: Error & { code: typeof URL_ELICITATION_REQUIRED; data: { elicitations: ElicitRequestURLParams[]; [key: string]: unknown; }; }; } /** * A response that indicates success but carries no data. * * @category Common Types */ export type EmptyResult = Result; /** * Parameters for a `notifications/cancelled` notification. * * @category `notifications/cancelled` */ export interface CancelledNotificationParams extends NotificationParams { /** * The ID of the request to cancel. * * This MUST correspond to the ID of a request previously issued in the same direction. * This MUST be provided for cancelling non-task requests. * This MUST NOT be used for cancelling tasks (use the `tasks/cancel` request instead). */ requestId?: RequestId; /** * An optional string describing the reason for the cancellation. This MAY be logged or presented to the user. */ reason?: string; } /** * This notification can be sent by either side to indicate that it is cancelling a previously-issued request. * * The request SHOULD still be in-flight, but due to communication latency, it is always possible that this notification MAY arrive after the request has already finished. * * This notification indicates that the result will be unused, so any associated processing SHOULD cease. * * A client MUST NOT attempt to cancel its `initialize` request. * * For task cancellation, use the `tasks/cancel` request instead of this notification. * * @category `notifications/cancelled` */ export interface CancelledNotification extends JSONRPCNotification { method: "notifications/cancelled"; params: CancelledNotificationParams; } /** * Parameters for an `initialize` request. * * @category `initialize` */ export interface InitializeRequestParams extends RequestParams { /** * The latest version of the Model Context Protocol that the client supports. The client MAY decide to support older versions as well. */ protocolVersion: string; capabilities: ClientCapabilities; clientInfo: Implementation; } /** * This request is sent from the client to the server when it first connects, asking it to begin initialization. * * @category `initialize` */ export interface InitializeRequest extends JSONRPCRequest { method: "initialize"; params: InitializeRequestParams; } /** * After receiving an initialize request from the client, the server sends this response. * * @category `initialize` */ export interface InitializeResult extends Result { /** * The version of the Model Context Protocol that the server wants to use. This may not match the version that the client requested. If the client cannot support this version, it MUST disconnect. */ protocolVersion: string; capabilities: ServerCapabilities; serverInfo: Implementation; /** * Instructions describing how to use the server and its features. * * This can be used by clients to improve the LLM's understanding of available tools, resources, etc. It can be thought of like a "hint" to the model. For example, this information MAY be added to the system prompt. */ instructions?: string; } /** * This notification is sent from the client to the server after initialization has finished. * * @category `notifications/initialized` */ export interface InitializedNotification extends JSONRPCNotification { method: "notifications/initialized"; params?: NotificationParams; } /** * Capabilities a client may support. Known capabilities are defined here, in this schema, but this is not a closed set: any client can define its own, additional capabilities. * * @category `initialize` */ export interface ClientCapabilities { /** * Experimental, non-standard capabilities that the client supports. */ experimental?: { [key: string]: object; }; /** * Present if the client supports listing roots. */ roots?: { /** * Whether the client supports notifications for changes to the roots list. */ listChanged?: boolean; }; /** * Present if the client supports sampling from an LLM. */ sampling?: { /** * Whether the client supports context inclusion via includeContext parameter. * If not declared, servers SHOULD only use `includeContext: "none"` (or omit it). */ context?: object; /** * Whether the client supports tool use via tools and toolChoice parameters. */ tools?: object; }; /** * Present if the client supports elicitation from the server. */ elicitation?: { form?: object; url?: object; }; /** * Present if the client supports task-augmented requests. */ tasks?: { /** * Whether this client supports tasks/list. */ list?: object; /** * Whether this client supports tasks/cancel. */ cancel?: object; /** * Specifies which request types can be augmented with tasks. */ requests?: { /** * Task support for sampling-related requests. */ sampling?: { /** * Whether the client supports task-augmented sampling/createMessage requests. */ createMessage?: object; }; /** * Task support for elicitation-related requests. */ elicitation?: { /** * Whether the client supports task-augmented elicitation/create requests. */ create?: object; }; }; }; } /** * Capabilities that a server may support. Known capabilities are defined here, in this schema, but this is not a closed set: any server can define its own, additional capabilities. * * @category `initialize` */ export interface ServerCapabilities { /** * Experimental, non-standard capabilities that the server supports. */ experimental?: { [key: string]: object; }; /** * Present if the server supports sending log messages to the client. */ logging?: object; /** * Present if the server supports argument autocompletion suggestions. */ completions?: object; /** * Present if the server offers any prompt templates. */ prompts?: { /** * Whether this server supports notifications for changes to the prompt list. */ listChanged?: boolean; }; /** * Present if the server offers any resources to read. */ resources?: { /** * Whether this server supports subscribing to resource updates. */ subscribe?: boolean; /** * Whether this server supports notifications for changes to the resource list. */ listChanged?: boolean; }; /** * Present if the server offers any tools to call. */ tools?: { /** * Whether this server supports notifications for changes to the tool list. */ listChanged?: boolean; }; /** * Present if the server supports task-augmented requests. */ tasks?: { /** * Whether this server supports tasks/list. */ list?: object; /** * Whether this server supports tasks/cancel. */ cancel?: object; /** * Specifies which request types can be augmented with tasks. */ requests?: { /** * Task support for tool-related requests. */ tools?: { /** * Whether the server supports task-augmented tools/call requests. */ call?: object; }; }; }; } /** * An optionally-sized icon that can be displayed in a user interface. * * @category Common Types */ export interface Icon { /** * A standard URI pointing to an icon resource. May be an HTTP/HTTPS URL or a * `data:` URI with Base64-encoded image data. * * Consumers SHOULD takes steps to ensure URLs serving icons are from the * same domain as the client/server or a trusted domain. * * Consumers SHOULD take appropriate precautions when consuming SVGs as they can contain * executable JavaScript. * * @format uri */ src: string; /** * Optional MIME type override if the source MIME type is missing or generic. * For example: `"image/png"`, `"image/jpeg"`, or `"image/svg+xml"`. */ mimeType?: string; /** * Optional array of strings that specify sizes at which the icon can be used. * Each string should be in WxH format (e.g., `"48x48"`, `"96x96"`) or `"any"` for scalable formats like SVG. * * If not provided, the client should assume that the icon can be used at any size. */ sizes?: string[]; /** * Optional specifier for the theme this icon is designed for. `light` indicates * the icon is designed to be used with a light background, and `dark` indicates * the icon is designed to be used with a dark background. * * If not provided, the client should assume the icon can be used with any theme. */ theme?: "light" | "dark"; } /** * Base interface to add `icons` property. * * @internal */ export interface Icons { /** * Optional set of sized icons that the client can display in a user interface. * * Clients that support rendering icons MUST support at least the following MIME types: * - `image/png` - PNG images (safe, universal compatibility) * - `image/jpeg` (and `image/jpg`) - JPEG images (safe, universal compatibility) * * Clients that support rendering icons SHOULD also support: * - `image/svg+xml` - SVG images (scalable but requires security precautions) * - `image/webp` - WebP images (modern, efficient format) */ icons?: Icon[]; } /** * Base interface for metadata with name (identifier) and title (display name) properties. * * @internal */ export interface BaseMetadata { /** * Intended for programmatic or logical use, but used as a display name in past specs or fallback (if title isn't present). */ name: string; /** * Intended for UI and end-user contexts — optimized to be human-readable and easily understood, * even by those unfamiliar with domain-specific terminology. * * If not provided, the name should be used for display (except for Tool, * where `annotations.title` should be given precedence over using `name`, * if present). */ title?: string; } /** * Describes the MCP implementation. * * @category `initialize` */ export interface Implementation extends BaseMetadata, Icons { version: string; /** * An optional human-readable description of what this implementation does. * * This can be used by clients or servers to provide context about their purpose * and capabilities. For example, a server might describe the types of resources * or tools it provides, while a client might describe its intended use case. */ description?: string; /** * An optional URL of the website for this implementation. * * @format uri */ websiteUrl?: string; } /** * A ping, issued by either the server or the client, to check that the other party is still alive. The receiver must promptly respond, or else may be disconnected. * * @category `ping` */ export interface PingRequest extends JSONRPCRequest { method: "ping"; params?: RequestParams; } /** * Parameters for a `notifications/progress` notification. * * @category `notifications/progress` */ export interface ProgressNotificationParams extends NotificationParams { /** * The progress token which was given in the initial request, used to associate this notification with the request that is proceeding. */ progressToken: ProgressToken; /** * The progress thus far. This should increase every time progress is made, even if the total is unknown. * * @TJS-type number */ progress: number; /** * Total number of items to process (or total progress required), if known. * * @TJS-type number */ total?: number; /** * An optional message describing the current progress. */ message?: string; } /** * An out-of-band notification used to inform the receiver of a progress update for a long-running request. * * @category `notifications/progress` */ export interface ProgressNotification extends JSONRPCNotification { method: "notifications/progress"; params: ProgressNotificationParams; } /** * Common parameters for paginated requests. * * @internal */ export interface PaginatedRequestParams extends RequestParams { /** * An opaque token representing the current pagination position. * If provided, the server should return results starting after this cursor. */ cursor?: Cursor; } /** @internal */ export interface PaginatedRequest extends JSONRPCRequest { params?: PaginatedRequestParams; } /** @internal */ export interface PaginatedResult extends Result { /** * An opaque token representing the pagination position after the last returned result. * If present, there may be more results available. */ nextCursor?: Cursor; } /** * Sent from the client to request a list of resources the server has. * * @category `resources/list` */ export interface ListResourcesRequest extends PaginatedRequest { method: "resources/list"; } /** * The server's response to a resources/list request from the client. * * @category `resources/list` */ export interface ListResourcesResult extends PaginatedResult { resources: Resource[]; } /** * Sent from the client to request a list of resource templates the server has. * * @category `resources/templates/list` */ export interface ListResourceTemplatesRequest extends PaginatedRequest { method: "resources/templates/list"; } /** * The server's response to a resources/templates/list request from the client. * * @category `resources/templates/list` */ export interface ListResourceTemplatesResult extends PaginatedResult { resourceTemplates: ResourceTemplate[]; } /** * Common parameters when working with resources. * * @internal */ export interface ResourceRequestParams extends RequestParams { /** * The URI of the resource. The URI can use any protocol; it is up to the server how to interpret it. * * @format uri */ uri: string; } /** * Parameters for a `resources/read` request. * * @category `resources/read` */ export interface ReadResourceRequestParams extends ResourceRequestParams { } /** * Sent from the client to the server, to read a specific resource URI. * * @category `resources/read` */ export interface ReadResourceRequest extends JSONRPCRequest { method: "resources/read"; params: ReadResourceRequestParams; } /** * The server's response to a resources/read request from the client. * * @category `resources/read` */ export interface ReadResourceResult extends Result { contents: (TextResourceContents | BlobResourceContents)[]; } /** * An optional notification from the server to the client, informing it that the list of resources it can read from has changed. This may be issued by servers without any previous subscription from the client. * * @category `notifications/resources/list_changed` */ export interface ResourceListChangedNotification extends JSONRPCNotification { method: "notifications/resources/list_changed"; params?: NotificationParams; } /** * Parameters for a `resources/subscribe` request. * * @category `resources/subscribe` */ export interface SubscribeRequestParams extends ResourceRequestParams { } /** * Sent from the client to request resources/updated notifications from the server whenever a particular resource changes. * * @category `resources/subscribe` */ export interface SubscribeRequest extends JSONRPCRequest { method: "resources/subscribe"; params: SubscribeRequestParams; } /** * Parameters for a `resources/unsubscribe` request. * * @category `resources/unsubscribe` */ export interface UnsubscribeRequestParams extends ResourceRequestParams { } /** * Sent from the client to request cancellation of resources/updated notifications from the server. This should follow a previous resources/subscribe request. * * @category `resources/unsubscribe` */ export interface UnsubscribeRequest extends JSONRPCRequest { method: "resources/unsubscribe"; params: UnsubscribeRequestParams; } /** * Parameters for a `notifications/resources/updated` notification. * * @category `notifications/resources/updated` */ export interface ResourceUpdatedNotificationParams extends NotificationParams { /** * The URI of the resource that has been updated. This might be a sub-resource of the one that the client actually subscribed to. * * @format uri */ uri: string; } /** * A notification from the server to the client, informing it that a resource has changed and may need to be read again. This should only be sent if the client previously sent a resources/subscribe request. * * @category `notifications/resources/updated` */ export interface ResourceUpdatedNotification extends JSONRPCNotification { method: "notifications/resources/updated"; params: ResourceUpdatedNotificationParams; } /** * A known resource that the server is capable of reading. * * @category `resources/list` */ export interface Resource extends BaseMetadata, Icons { /** * The URI of this resource. * * @format uri */ uri: string; /** * A description of what this resource represents. * * This can be used by clients to improve the LLM's understanding of available resources. It can be thought of like a "hint" to the model. */ description?: string; /** * The MIME type of this resource, if known. */ mimeType?: string; /** * Optional annotations for the client. */ annotations?: Annotations; /** * The size of the raw resource content, in bytes (i.e., before base64 encoding or any tokenization), if known. * * This can be used by Hosts to display file sizes and estimate context window usage. */ size?: number; /** * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. */ _meta?: { [key: string]: unknown; }; } /** * A template description for resources available on the server. * * @category `resources/templates/list` */ export interface ResourceTemplate extends BaseMetadata, Icons { /** * A URI template (according to RFC 6570) that can be used to construct resource URIs. * * @format uri-template */ uriTemplate: string; /** * A description of what this template is for. * * This can be used by clients to improve the LLM's understanding of available resources. It can be thought of like a "hint" to the model. */ description?: string; /** * The MIME type for all resources that match this template. This should only be included if all resources matching this template have the same type. */ mimeType?: string; /** * Optional annotations for the client. */ annotations?: Annotations; /** * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. */ _meta?: { [key: string]: unknown; }; } /** * The contents of a specific resource or sub-resource. * * @internal */ export interface ResourceContents { /** * The URI of this resource. * * @format uri */ uri: string; /** * The MIME type of this resource, if known. */ mimeType?: string; /** * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. */ _meta?: { [key: string]: unknown; }; } /** * @category Content */ export interface TextResourceContents extends ResourceContents { /** * The text of the item. This must only be set if the item can actually be represented as text (not binary data). */ text: string; } /** * @category Content */ export interface BlobResourceContents extends ResourceContents { /** * A base64-encoded string representing the binary data of the item. * * @format byte */ blob: string; } /** * Sent from the client to request a list of prompts and prompt templates the server has. * * @category `prompts/list` */ export interface ListPromptsRequest extends PaginatedRequest { method: "prompts/list"; } /** * The server's response to a prompts/list request from the client. * * @category `prompts/list` */ export interface ListPromptsResult extends PaginatedResult { prompts: Prompt[]; } /** * Parameters for a `prompts/get` request. * * @category `prompts/get` */ export interface GetPromptRequestParams extends RequestParams { /** * The name of the prompt or prompt template. */ name: string; /** * Arguments to use for templating the prompt. */ arguments?: { [key: string]: string; }; } /** * Used by the client to get a prompt provided by the server. * * @category `prompts/get` */ export interface GetPromptRequest extends JSONRPCRequest { method: "prompts/get"; params: GetPromptRequestParams; } /** * The server's response to a prompts/get request from the client. * * @category `prompts/get` */ export interface GetPromptResult extends Result { /** * An optional description for the prompt. */ description?: string; messages: PromptMessage[]; } /** * A prompt or prompt template that the server offers. * * @category `prompts/list` */ export interface Prompt extends BaseMetadata, Icons { /** * An optional description of what this prompt provides */ description?: string; /** * A list of arguments to use for templating the prompt. */ arguments?: PromptArgument[]; /** * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. */ _meta?: { [key: string]: unknown; }; } /** * Describes an argument that a prompt can accept. * * @category `prompts/list` */ export interface PromptArgument extends BaseMetadata { /** * A human-readable description of the argument. */ description?: string; /** * Whether this argument must be provided. */ required?: boolean; } /** * The sender or recipient of messages and data in a conversation. * * @category Common Types */ export type Role = "user" | "assistant"; /** * Describes a message returned as part of a prompt. * * This is similar to `SamplingMessage`, but also supports the embedding of * resources from the MCP server. * * @category `prompts/get` */ export interface PromptMessage { role: Role; content: ContentBlock; } /** * A resource that the server is capable of reading, included in a prompt or tool call result. * * Note: resource links returned by tools are not guaranteed to appear in the results of `resources/list` requests. * * @category Content */ export interface ResourceLink extends Resource { type: "resource_link"; } /** * The contents of a resource, embedded into a prompt or tool call result. * * It is up to the client how best to render embedded resources for the benefit * of the LLM and/or the user. * * @category Content */ export interface EmbeddedResource { type: "resource"; resource: TextResourceContents | BlobResourceContents; /** * Optional annotations for the client. */ annotations?: Annotations; /** * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. */ _meta?: { [key: string]: unknown; }; } /** * An optional notification from the server to the client, informing it that the list of prompts it offers has changed. This may be issued by servers without any previous subscription from the client. * * @category `notifications/prompts/list_changed` */ export interface PromptListChangedNotification extends JSONRPCNotification { method: "notifications/prompts/list_changed"; params?: NotificationParams; } /** * Sent from the client to request a list of tools the server has. * * @category `tools/list` */ export interface ListToolsRequest extends PaginatedRequest { method: "tools/list"; } /** * The server's response to a tools/list request from the client. * * @category `tools/list` */ export interface ListToolsResult extends PaginatedResult { tools: Tool[]; } /** * The server's response to a tool call. * * @category `tools/call` */ export interface CallToolResult extends Result { /** * A list of content objects that represent the unstructured result of the tool call. */ content: ContentBlock[]; /** * An optional JSON object that represents the structured result of the tool call. */ structuredContent?: { [key: string]: unknown; }; /** * Whether the tool call ended in an error. * * If not set, this is assumed to be false (the call was successful). * * Any errors that originate from the tool SHOULD be reported inside the result * object, with `isError` set to true, _not_ as an MCP protocol-level error * response. Otherwise, the LLM would not be able to see that an error occurred * and self-correct. * * However, any errors in _finding_ the tool, an error indicating that the * server does not support tool calls, or any other exceptional conditions, * should be reported as an MCP error response. */ isError?: boolean; } /** * Parameters for a `tools/call` request. * * @category `tools/call` */ export interface CallToolRequestParams extends TaskAugmentedRequestParams { /** * The name of the tool. */ name: string; /** * Arguments to use for the tool call. */ arguments?: { [key: string]: unknown; }; } /** * Used by the client to invoke a tool provided by the server. * * @category `tools/call` */ export interface CallToolRequest extends JSONRPCRequest { method: "tools/call"; params: CallToolRequestParams; } /** * An optional notification from the server to the client, informing it that the list of tools it offers has changed. This may be issued by servers without any previous subscription from the client. * * @category `notifications/tools/list_changed` */ export interface ToolListChangedNotification extends JSONRPCNotification { method: "notifications/tools/list_changed"; params?: NotificationParams; } /** * Additional properties describing a Tool to clients. * * NOTE: all properties in ToolAnnotations are **hints**. * They are not guaranteed to provide a faithful description of * tool behavior (including descriptive properties like `title`). * * Clients should never make tool use decisions based on ToolAnnotations * received from untrusted servers. * * @category `tools/list` */ export interface ToolAnnotations { /** * A human-readable title for the tool. */ title?: string; /** * If true, the tool does not modify its environment. * * Default: false */ readOnlyHint?: boolean; /** * If true, the tool may perform destructive updates to its environment. * If false, the tool performs only additive updates. * * (This property is meaningful only when `readOnlyHint == false`) * * Default: true */ destructiveHint?: boolean; /** * If true, calling the tool repeatedly with the same arguments * will have no additional effect on its environment. * * (This property is meaningful only when `readOnlyHint == false`) * * Default: false */ idempotentHint?: boolean; /** * If true, this tool may interact with an "open world" of external * entities. If false, the tool's domain of interaction is closed. * For example, the world of a web search tool is open, whereas that * of a memory tool is not. * * Default: true */ openWorldHint?: boolean; } /** * Execution-related properties for a tool. * * @category `tools/list` */ export interface ToolExecution { /** * Indicates whether this tool supports task-augmented execution. * This allows clients to handle long-running operations through polling * the task system. * * - "forbidden": Tool does not support task-augmented execution (default when absent) * - "optional": Tool may support task-augmented execution * - "required": Tool requires task-augmented execution * * Default: "forbidden" */ taskSupport?: "forbidden" | "optional" | "required"; } /** * Definition for a tool the client can call. * * @category `tools/list` */ export interface Tool extends BaseMetadata, Icons { /** * A human-readable description of the tool. * * This can be used by clients to improve the LLM's understanding of available tools. It can be thought of like a "hint" to the model. */ description?: string; /** * A JSON Schema object defining the expected parameters for the tool. */ inputSchema: { $schema?: string; type: "object"; properties?: { [key: string]: object; }; required?: string[]; }; /** * Execution-related properties for this tool. */ execution?: ToolExecution; /** * An optional JSON Schema object defining the structure of the tool's output returned in * the structuredContent field of a CallToolResult. * * Defaults to JSON Schema 2020-12 when no explicit $schema is provided. * Currently restricted to type: "object" at the root level. */ outputSchema?: { $schema?: string; type: "object"; properties?: { [key: string]: object; }; required?: string[]; }; /** * Optional additional tool information. * * Display name precedence order is: title, annotations.title, then name. */ annotations?: ToolAnnotations; /** * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. */ _meta?: { [key: string]: unknown; }; } /** * The status of a task. * * @category `tasks` */ export type TaskStatus = "working" | "input_required" | "completed" | "failed" | "cancelled"; /** * Metadata for augmenting a request with task execution. * Include this in the `task` field of the request parameters. * * @category `tasks` */ export interface TaskMetadata { /** * Requested duration in milliseconds to retain task from creation. */ ttl?: number; } /** * Metadata for associating messages with a task. * Include this in the `_meta` field under the key `io.modelcontextprotocol/related-task`. * * @category `tasks` */ export interface RelatedTaskMetadata { /** * The task identifier this message is associated with. */ taskId: string; } /** * Data associated with a task. * * @category `tasks` */ export interface Task { /** * The task identifier. */ taskId: string; /** * Current task state. */ status: TaskStatus; /** * Optional human-readable message describing the current task state. * This can provide context for any status, including: * - Reasons for "cancelled" status * - Summaries for "completed" status * - Diagnostic information for "failed" status (e.g., error details, what went wrong) */ statusMessage?: string; /** * ISO 8601 timestamp when the task was created. */ createdAt: string; /** * ISO 8601 timestamp when the task was last updated. */ lastUpdatedAt: string; /** * Actual retention duration from creation in milliseconds, null for unlimited. */ ttl: number | null; /** * Suggested polling interval in milliseconds. */ pollInterval?: number; } /** * A response to a task-augmented request. * * @category `tasks` */ export interface CreateTaskResult extends Result { task: Task; } /** * A request to retrieve the state of a task. * * @category `tasks/get` */ export interface GetTaskRequest extends JSONRPCRequest { method: "tasks/get"; params: { /** * The task identifier to query. */ taskId: string; }; } /** * The response to a tasks/get request. * * @category `tasks/get` */ export type GetTaskResult = Result & Task; /** * A request to retrieve the result of a completed task. * * @category `tasks/result` */ export interface GetTaskPayloadRequest extends JSONRPCRequest { method: "tasks/result"; params: { /** * The task identifier to retrieve results for. */ taskId: string; }; } /** * The response to a tasks/result request. * The structure matches the result type of the original request. * For example, a tools/call task would return the CallToolResult structure. * * @category `tasks/result` */ export interface GetTaskPayloadResult extends Result { [key: string]: unknown; } /** * A request to cancel a task. * * @category `tasks/cancel` */ export interface CancelTaskRequest extends JSONRPCRequest { method: "tasks/cancel"; params: { /** * The task identifier to cancel. */ taskId: string; }; } /** * The response to a tasks/cancel request. * * @category `tasks/cancel` */ export type CancelTaskResult = Result & Task; /** * A request to retrieve a list of tasks. * * @category `tasks/list` */ export interface ListTasksRequest extends PaginatedRequest { method: "tasks/list"; } /** * The response to a tasks/list request. * * @category `tasks/list` */ export interface ListTasksResult extends PaginatedResult { tasks: Task[]; } /** * Parameters for a `notifications/tasks/status` notification. * * @category `notifications/tasks/status` */ export type TaskStatusNotificationParams = NotificationParams & Task; /** * An optional notification from the receiver to the requestor, informing them that a task's status has changed. Receivers are not required to send these notifications. * * @category `notifications/tasks/status` */ export interface TaskStatusNotification extends JSONRPCNotification { method: "notifications/tasks/status"; params: TaskStatusNotificationParams; } /** * Parameters for a `logging/setLevel` request. * * @category `logging/setLevel` */ export interface SetLevelRequestParams extends RequestParams { /** * The level of logging that the client wants to receive from the server. The server should send all logs at this level and higher (i.e., more severe) to the client as notifications/message. */ level: LoggingLevel; } /** * A request from the client to the server, to enable or adjust logging. * * @category `logging/setLevel` */ export interface SetLevelRequest extends JSONRPCRequest { method: "logging/setLevel"; params: SetLevelRequestParams; } /** * Parameters for a `notifications/message` notification. * * @category `notifications/message` */ export interface LoggingMessageNotificationParams extends NotificationParams { /** * The severity of this log message. */ level: LoggingLevel; /** * An optional name of the logger issuing this message. */ logger?: string; /** * The data to be logged, such as a string message or an object. Any JSON serializable type is allowed here. */ data: unknown; } /** * JSONRPCNotification of a log message passed from server to client. If no logging/setLevel request has been sent from the client, the server MAY decide which messages to send automatically. * * @category `notifications/message` */ export interface LoggingMessageNotification extends JSONRPCNotification { method: "notifications/message"; params: LoggingMessageNotificationParams; } /** * The severity of a log message. * * These map to syslog message severities, as specified in RFC-5424: * https://datatracker.ietf.org/doc/html/rfc5424#section-6.2.1 * * @category Common Types */ export type LoggingLevel = "debug" | "info" | "notice" | "warning" | "error" | "critical" | "alert" | "emergency"; /** * Parameters for a `sampling/createMessage` request. * * @category `sampling/createMessage` */ export interface CreateMessageRequestParams extends TaskAugmentedRequestParams { messages: SamplingMessage[]; /** * The server's preferences for which model to select. The client MAY ignore these preferences. */ modelPreferences?: ModelPreferences; /** * An optional system prompt the server wants to use for sampling. The client MAY modify or omit this prompt. */ systemPrompt?: string; /** * A request to include context from one or more MCP servers (including the caller), to be attached to the prompt. * The client MAY ignore this request. * * Default is "none". Values "thisServer" and "allServers" are soft-deprecated. Servers SHOULD only use these values if the client * declares ClientCapabilities.sampling.context. These values may be removed in future spec releases. */ includeContext?: "none" | "thisServer" | "allServers"; /** * @TJS-type number */ temperature?: number; /** * The requested maximum number of tokens to sample (to prevent runaway completions). * * The client MAY choose to sample fewer tokens than the requested maximum. */ maxTokens: number; stopSequences?: string[]; /** * Optional metadata to pass through to the LLM provider. The format of this metadata is provider-specific. */ metadata?: object; /** * Tools that the model may use during generation. * The client MUST return an error if this field is provided but ClientCapabilities.sampling.tools is not declared. */ tools?: Tool[]; /** * Controls how the model uses tools. * The client MUST return an error if this field is provided but ClientCapabilities.sampling.tools is not declared. * Default is `{ mode: "auto" }`. */ toolChoice?: ToolChoice; } /** * Controls tool selection behavior for sampling requests. * * @category `sampling/createMessage` */ export interface ToolChoice { /** * Controls the tool use ability of the model: * - "auto": Model decides whether to use tools (default) * - "required": Model MUST use at least one tool before completing * - "none": Model MUST NOT use any tools */ mode?: "auto" | "required" | "none"; } /** * A request from the server to sample an LLM via the client. The client has full discretion over which model to select. The client should also inform the user before beginning sampling, to allow them to inspect the request (human in the loop) and decide whether to approve it. * * @category `sampling/createMessage` */ export interface CreateMessageRequest extends JSONRPCRequest { method: "sampling/createMessage"; params: CreateMessageRequestParams; } /** * The client's response to a sampling/createMessage request from the server. * The client should inform the user before returning the sampled message, to allow them * to inspect the response (human in the loop) and decide whether to allow the server to see it. * * @category `sampling/createMessage` */ export interface CreateMessageResult extends Result, SamplingMessage { /** * The name of the model that generated the message. */ model: string; /** * The reason why sampling stopped, if known. * * Standard values: * - "endTurn": Natural end of the assistant's turn * - "stopSequence": A stop sequence was encountered * - "maxTokens": Maximum token limit was reached * - "toolUse": The model wants to use one or more tools * * This field is an open string to allow for provider-specific stop reasons. */ stopReason?: "endTurn" | "stopSequence" | "maxTokens" | "toolUse" | string; } /** * Describes a message issued to or received from an LLM API. * * @category `sampling/createMessage` */ export interface SamplingMessage { role: Role; content: SamplingMessageContentBlock | SamplingMessageContentBlock[]; /** * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. */ _meta?: { [key: string]: unknown; }; } export type SamplingMessageContentBlock = TextContent | ImageContent | AudioContent | ToolUseContent | ToolResultContent; /** * Optional annotations for the client. The client can use annotations to inform how objects are used or displayed * * @category Common Types */ export interface Annotations { /** * Describes who the intended audience of this object or data is. * * It can include multiple entries to indicate content useful for multiple audiences (e.g., `["user", "assistant"]`). */ audience?: Role[]; /** * Describes how important this data is for operating the server. * * A value of 1 means "most important," and indicates that the data is * effectively required, while 0 means "least important," and indicates that * the data is entirely optional. * * @TJS-type number * @minimum 0 * @maximum 1 */ priority?: number; /** * The moment the resource was last modified, as an ISO 8601 formatted string. * * Should be an ISO 8601 formatted string (e.g., "2025-01-12T15:00:58Z"). * * Examples: last activity timestamp in an open file, timestamp when the resource * was attached, etc. */ lastModified?: string; } /** * @category Content */ export type ContentBlock = TextContent | ImageContent | AudioContent | ResourceLink | EmbeddedResource; /** * Text provided to or from an LLM. * * @category Content */ export interface TextContent { type: "text"; /** * The text content of the message. */ text: string; /** * Optional annotations for the client. */ annotations?: Annotations; /** * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. */ _meta?: { [key: string]: unknown; }; } /** * An image provided to or from an LLM. * * @category Content */ export interface ImageContent { type: "image"; /** * The base64-encoded image data. * * @format byte */ data: string; /** * The MIME type of the image. Different providers may support different image types. */ mimeType: string; /** * Optional annotations for the client. */ annotations?: Annotations; /** * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. */ _meta?: { [key: string]: unknown; }; } /** * Audio provided to or from an LLM. * * @category Content */ export interface AudioContent { type: "audio"; /** * The base64-encoded audio data. * * @format byte */ data: string; /** * The MIME type of the audio. Different providers may support different audio types. */ mimeType: string; /** * Optional annotations for the client. */ annotations?: Annotations; /** * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. */ _meta?: { [key: string]: unknown; }; } /** * A request from the assistant to call a tool. * * @category `sampling/createMessage` */ export interface ToolUseContent { type: "tool_use"; /** * A unique identifier for this tool use. * * This ID is used to match tool results to their corresponding tool uses. */ id: string; /** * The name of the tool to call. */ name: string; /** * The arguments to pass to the tool, conforming to the tool's input schema. */ input: {