We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4945ded commit 824e0ceCopy full SHA for 824e0ce
mcp/protocol.go
@@ -968,6 +968,7 @@ type ElicitParams struct {
968
RequestedSchema *jsonschema.Schema `json:"requestedSchema"`
969
}
970
971
+func (*ElicitParams) isParams() {}
972
func (x *ElicitParams) GetProgressToken() any { return getProgressToken(x) }
973
func (x *ElicitParams) SetProgressToken(t any) { setProgressToken(x, t) }
974
@@ -986,6 +987,8 @@ type ElicitResult struct {
986
987
Content map[string]any `json:"content,omitempty"`
988
989
990
+func (*ElicitResult) isResult() {}
991
+
992
// An Implementation describes the name and version of an MCP implementation, with an optional
993
// title for UI representation.
994
type Implementation struct {
0 commit comments