File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed
Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -558,7 +558,7 @@ export interface PromptArgument {
558558 * Describes a message returned as part of a prompt.
559559 *
560560 * This is similar to `SamplingMessage`, but also supports the embedding of
561- * resource contents from the MCP server.
561+ * resource contents from the MCP server.
562562 */
563563export interface PromptMessage {
564564 role : "user" | "assistant" ;
@@ -567,7 +567,7 @@ export interface PromptMessage {
567567
568568/**
569569 * The contents of a resource, embedded into a prompt.
570- *
570+ *
571571 * It is up to the client how best to render embedded resources for the benefit
572572 * of the LLM and/or the user.
573573 */
@@ -689,11 +689,19 @@ export interface LoggingMessageNotification extends Notification {
689689
690690/**
691691 * The severity of a log message.
692- *
692+ *
693693 * These map to syslog message severities, as specified in RFC-5424:
694694 * https://datatracker.ietf.org/doc/html/rfc5424#section-6.2.1
695695 */
696- export type LoggingLevel = "debug" | "info" | "notice" | "warning" | "error" | "critical" | "alert" | "emergency" ;
696+ export type LoggingLevel =
697+ | "debug"
698+ | "info"
699+ | "notice"
700+ | "warning"
701+ | "error"
702+ | "critical"
703+ | "alert"
704+ | "emergency" ;
697705
698706/* Sampling */
699707/**
@@ -952,7 +960,7 @@ export interface Root {
952960 * This restriction may be relaxed in future versions of the protocol to allow
953961 * other URI schemes.
954962 *
955- * @format uri-template
963+ * @format uri
956964 */
957965 uri : string ;
958966 /**
You can’t perform that action at this time.
0 commit comments