effect 4.0.0-beta.11 → 4.0.0-beta.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. package/dist/Config.d.ts +157 -0
  2. package/dist/Config.d.ts.map +1 -1
  3. package/dist/Config.js +56 -1
  4. package/dist/Config.js.map +1 -1
  5. package/dist/Effect.d.ts +79 -0
  6. package/dist/Effect.d.ts.map +1 -1
  7. package/dist/Effect.js +26 -0
  8. package/dist/Effect.js.map +1 -1
  9. package/dist/Fiber.d.ts +2 -2
  10. package/dist/Fiber.d.ts.map +1 -1
  11. package/dist/Fiber.js.map +1 -1
  12. package/dist/Graph.d.ts.map +1 -1
  13. package/dist/Graph.js +3 -6
  14. package/dist/Graph.js.map +1 -1
  15. package/dist/Random.d.ts +17 -0
  16. package/dist/Random.d.ts.map +1 -1
  17. package/dist/Random.js +17 -0
  18. package/dist/Random.js.map +1 -1
  19. package/dist/Schema.d.ts +3 -1
  20. package/dist/Schema.d.ts.map +1 -1
  21. package/dist/internal/effect.js +59 -44
  22. package/dist/internal/effect.js.map +1 -1
  23. package/dist/unstable/ai/LanguageModel.d.ts.map +1 -1
  24. package/dist/unstable/ai/LanguageModel.js +49 -18
  25. package/dist/unstable/ai/LanguageModel.js.map +1 -1
  26. package/dist/unstable/ai/McpSchema.d.ts +112 -36
  27. package/dist/unstable/ai/McpSchema.d.ts.map +1 -1
  28. package/dist/unstable/ai/McpSchema.js +47 -10
  29. package/dist/unstable/ai/McpSchema.js.map +1 -1
  30. package/dist/unstable/ai/McpServer.d.ts.map +1 -1
  31. package/dist/unstable/ai/McpServer.js +33 -6
  32. package/dist/unstable/ai/McpServer.js.map +1 -1
  33. package/dist/unstable/ai/Tool.d.ts +16 -0
  34. package/dist/unstable/ai/Tool.d.ts.map +1 -1
  35. package/dist/unstable/ai/Tool.js +14 -0
  36. package/dist/unstable/ai/Tool.js.map +1 -1
  37. package/dist/unstable/cluster/ClusterWorkflowEngine.d.ts.map +1 -1
  38. package/dist/unstable/cluster/ClusterWorkflowEngine.js +2 -2
  39. package/dist/unstable/cluster/ClusterWorkflowEngine.js.map +1 -1
  40. package/dist/unstable/http/HttpClient.d.ts +28 -4
  41. package/dist/unstable/http/HttpClient.d.ts.map +1 -1
  42. package/dist/unstable/http/HttpClient.js.map +1 -1
  43. package/dist/unstable/http/HttpEffect.d.ts +3 -8
  44. package/dist/unstable/http/HttpEffect.d.ts.map +1 -1
  45. package/dist/unstable/http/HttpEffect.js +13 -24
  46. package/dist/unstable/http/HttpEffect.js.map +1 -1
  47. package/dist/unstable/http/HttpMiddleware.d.ts.map +1 -1
  48. package/dist/unstable/http/HttpMiddleware.js +4 -8
  49. package/dist/unstable/http/HttpMiddleware.js.map +1 -1
  50. package/dist/unstable/http/HttpServerError.d.ts +6 -1
  51. package/dist/unstable/http/HttpServerError.d.ts.map +1 -1
  52. package/dist/unstable/http/HttpServerError.js +26 -17
  53. package/dist/unstable/http/HttpServerError.js.map +1 -1
  54. package/dist/unstable/http/internal/preResponseHandler.d.ts +2 -0
  55. package/dist/unstable/http/internal/preResponseHandler.d.ts.map +1 -0
  56. package/dist/unstable/http/internal/preResponseHandler.js +10 -0
  57. package/dist/unstable/http/internal/preResponseHandler.js.map +1 -0
  58. package/dist/unstable/httpapi/HttpApiBuilder.d.ts +1 -1
  59. package/dist/unstable/httpapi/HttpApiBuilder.d.ts.map +1 -1
  60. package/dist/unstable/reactivity/Atom.js +1 -1
  61. package/dist/unstable/reactivity/Atom.js.map +1 -1
  62. package/dist/unstable/rpc/RpcSchema.d.ts +13 -0
  63. package/dist/unstable/rpc/RpcSchema.d.ts.map +1 -1
  64. package/dist/unstable/rpc/RpcSchema.js +14 -0
  65. package/dist/unstable/rpc/RpcSchema.js.map +1 -1
  66. package/dist/unstable/rpc/RpcSerialization.d.ts.map +1 -1
  67. package/dist/unstable/rpc/RpcSerialization.js +34 -9
  68. package/dist/unstable/rpc/RpcSerialization.js.map +1 -1
  69. package/dist/unstable/rpc/RpcServer.d.ts +0 -7
  70. package/dist/unstable/rpc/RpcServer.d.ts.map +1 -1
  71. package/dist/unstable/rpc/RpcServer.js +5 -10
  72. package/dist/unstable/rpc/RpcServer.js.map +1 -1
  73. package/package.json +1 -1
  74. package/src/Config.ts +171 -9
  75. package/src/Effect.ts +80 -0
  76. package/src/Fiber.ts +9 -2
  77. package/src/Graph.ts +16 -6
  78. package/src/Random.ts +18 -0
  79. package/src/Schema.ts +1 -1
  80. package/src/internal/effect.ts +82 -49
  81. package/src/unstable/ai/LanguageModel.ts +54 -24
  82. package/src/unstable/ai/McpSchema.ts +57 -11
  83. package/src/unstable/ai/McpServer.ts +44 -6
  84. package/src/unstable/ai/Tool.ts +15 -0
  85. package/src/unstable/cluster/ClusterWorkflowEngine.ts +2 -2
  86. package/src/unstable/http/HttpClient.ts +45 -10
  87. package/src/unstable/http/HttpEffect.ts +20 -39
  88. package/src/unstable/http/HttpMiddleware.ts +4 -14
  89. package/src/unstable/http/HttpServerError.ts +29 -18
  90. package/src/unstable/http/internal/preResponseHandler.ts +15 -0
  91. package/src/unstable/httpapi/HttpApiBuilder.ts +1 -1
  92. package/src/unstable/reactivity/Atom.ts +1 -1
  93. package/src/unstable/rpc/RpcSchema.ts +17 -0
  94. package/src/unstable/rpc/RpcSerialization.ts +44 -9
  95. package/src/unstable/rpc/RpcServer.ts +10 -19
@@ -317,6 +317,11 @@ declare const ClientCapabilities_base: Schema.ExtendableClass<ClientCapabilities
317
317
  * Experimental, non-standard capabilities that the client supports.
318
318
  */
319
319
  readonly experimental: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{}>>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Struct<{}>>>, never, never>;
320
+ /**
321
+ * Optional extensions capabilities advertised by the client.
322
+ * Keys are extension identifiers following <vendor-prefix>/<extension-name> (e.g. "io.modelcontextprotocol/ui").
323
+ */
324
+ readonly extensions: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.TemplateLiteral<readonly [Schema.String, "/", Schema.String]>, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.TemplateLiteral<readonly [Schema.String, "/", Schema.String]>, Schema.Unknown>>, never, never>;
320
325
  /**
321
326
  * Present if the client supports listing roots.
322
327
  */
@@ -355,6 +360,11 @@ declare const ServerCapabilities_base: Schema.Opaque<ServerCapabilities, Schema.
355
360
  * Experimental, non-standard capabilities that the server supports.
356
361
  */
357
362
  readonly experimental: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{}>>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Struct<{}>>>, never, never>;
363
+ /**
364
+ * Optional extensions capabilities advertised by the server.
365
+ * Keys are extension identifiers following <vendor-prefix>/<extension-name> (e.g. "io.modelcontextprotocol/ui").
366
+ */
367
+ readonly extensions: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.TemplateLiteral<readonly [Schema.String, "/", Schema.String]>, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.TemplateLiteral<readonly [Schema.String, "/", Schema.String]>, Schema.Unknown>>, never, never>;
358
368
  /**
359
369
  * Present if the server supports sending log messages to the client.
360
370
  */
@@ -418,6 +428,11 @@ declare const ServerCapabilities_base: Schema.Opaque<ServerCapabilities, Schema.
418
428
  * Experimental, non-standard capabilities that the server supports.
419
429
  */
420
430
  readonly experimental: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{}>>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Struct<{}>>>, never, never>;
431
+ /**
432
+ * Optional extensions capabilities advertised by the server.
433
+ * Keys are extension identifiers following <vendor-prefix>/<extension-name> (e.g. "io.modelcontextprotocol/ui").
434
+ */
435
+ readonly extensions: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.TemplateLiteral<readonly [Schema.String, "/", Schema.String]>, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.TemplateLiteral<readonly [Schema.String, "/", Schema.String]>, Schema.Unknown>>, never, never>;
421
436
  /**
422
437
  * Present if the server supports sending log messages to the client.
423
438
  */
@@ -487,7 +502,7 @@ declare const ServerCapabilities_base: Schema.Opaque<ServerCapabilities, Schema.
487
502
  */
488
503
  export declare class ServerCapabilities extends ServerCapabilities_base {
489
504
  }
490
- declare const McpError_base: Schema.ExtendableClass<McpError, Schema.Struct<{
505
+ declare const McpErrorBase_base: Schema.ExtendableClass<McpErrorBase, Schema.Struct<{
491
506
  /**
492
507
  * The error type that occurred.
493
508
  */
@@ -507,7 +522,7 @@ declare const McpError_base: Schema.ExtendableClass<McpError, Schema.Struct<{
507
522
  * @since 4.0.0
508
523
  * @category errors
509
524
  */
510
- export declare class McpError extends McpError_base {
525
+ export declare class McpErrorBase extends McpErrorBase_base {
511
526
  }
512
527
  /**
513
528
  * @since 4.0.0
@@ -635,7 +650,12 @@ declare const InternalError_base: Schema.ErrorClass<InternalError, Schema.Struct
635
650
  export declare class InternalError extends InternalError_base {
636
651
  static readonly notImplemented: InternalError;
637
652
  }
638
- declare const Ping_base: Rpc.Rpc<"ping", Schema.UndefinedOr<typeof RequestMeta>, Schema.Struct<{}>, typeof McpError, never, never>;
653
+ /**
654
+ * @since 4.0.0
655
+ * @category errors
656
+ */
657
+ export declare const McpError: Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>;
658
+ declare const Ping_base: Rpc.Rpc<"ping", Schema.UndefinedOr<typeof RequestMeta>, Schema.Struct<{}>, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
639
659
  /**
640
660
  * A ping, issued by either the server or the client, to check that the other
641
661
  * party is still alive. The receiver must promptly respond, or else may be
@@ -735,7 +755,7 @@ declare const Initialize_base: Rpc.Rpc<"initialize", Schema.Struct<{
735
755
  */
736
756
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
737
757
  }>>, never, never>;
738
- }>, typeof InitializeResult, typeof McpError, never, never>;
758
+ }>, typeof InitializeResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
739
759
  /**
740
760
  * This request is sent from the client to the server when it first connects,
741
761
  * asking it to begin initialization.
@@ -841,6 +861,13 @@ declare const Resource_base: Schema.ExtendableClass<Resource, Schema.Struct<{
841
861
  * window usage.
842
862
  */
843
863
  readonly size: Schema.decodeTo<Schema.optional<Schema.Number>, Schema.optionalKey<Schema.Number>, never, never>;
864
+ /**
865
+ * Optional additional metadata for the client.
866
+ *
867
+ * This parameter name is reserved by MCP to allow clients and servers to
868
+ * attach additional metadata to resources.
869
+ */
870
+ readonly _meta: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Unknown>>, never, never>;
844
871
  }>, {}>;
845
872
  /**
846
873
  * A known resource that the server is capable of reading.
@@ -879,6 +906,10 @@ declare const ResourceTemplate_base: Schema.ExtendableClass<ResourceTemplate, Sc
879
906
  * Optional annotations for the client.
880
907
  */
881
908
  readonly annotations: Schema.decodeTo<Schema.optional<typeof Annotations>, Schema.optionalKey<typeof Annotations>, never, never>;
909
+ /**
910
+ * Optional additional metadata for the client.
911
+ */
912
+ readonly _meta: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Unknown>>, never, never>;
882
913
  }>, {}>;
883
914
  /**
884
915
  * A template description for resources available on the server.
@@ -897,6 +928,10 @@ declare const ResourceContents_base: Schema.Opaque<ResourceContents, Schema.Stru
897
928
  * The MIME type of this resource, if known.
898
929
  */
899
930
  readonly mimeType: Schema.decodeTo<Schema.optional<Schema.String>, Schema.optionalKey<Schema.String>, never, never>;
931
+ /**
932
+ * Optional additional metadata for the client.
933
+ */
934
+ readonly _meta: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Unknown>>, never, never>;
900
935
  }>, {}> & Omit<Schema.Struct<{
901
936
  /**
902
937
  * The URI of this resource.
@@ -906,6 +941,10 @@ declare const ResourceContents_base: Schema.Opaque<ResourceContents, Schema.Stru
906
941
  * The MIME type of this resource, if known.
907
942
  */
908
943
  readonly mimeType: Schema.decodeTo<Schema.optional<Schema.String>, Schema.optionalKey<Schema.String>, never, never>;
944
+ /**
945
+ * Optional additional metadata for the client.
946
+ */
947
+ readonly _meta: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Unknown>>, never, never>;
909
948
  }>, "Type">;
910
949
  /**
911
950
  * The contents of a specific resource or sub-resource.
@@ -929,6 +968,10 @@ declare const TextResourceContents_base: Schema.Opaque<TextResourceContents, Sch
929
968
  * The MIME type of this resource, if known.
930
969
  */
931
970
  readonly mimeType: Schema.decodeTo<Schema.optional<Schema.String>, Schema.optionalKey<Schema.String>, never, never>;
971
+ /**
972
+ * Optional additional metadata for the client.
973
+ */
974
+ readonly _meta: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Unknown>>, never, never>;
932
975
  }>, {}> & Omit<Schema.Struct<{
933
976
  /**
934
977
  * The text of the item. This must only be set if the item can actually be
@@ -943,6 +986,10 @@ declare const TextResourceContents_base: Schema.Opaque<TextResourceContents, Sch
943
986
  * The MIME type of this resource, if known.
944
987
  */
945
988
  readonly mimeType: Schema.decodeTo<Schema.optional<Schema.String>, Schema.optionalKey<Schema.String>, never, never>;
989
+ /**
990
+ * Optional additional metadata for the client.
991
+ */
992
+ readonly _meta: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Unknown>>, never, never>;
946
993
  }>, "Type">;
947
994
  /**
948
995
  * The contents of a text resource, which can be represented as a string.
@@ -965,6 +1012,10 @@ declare const BlobResourceContents_base: Schema.Opaque<BlobResourceContents, Sch
965
1012
  * The MIME type of this resource, if known.
966
1013
  */
967
1014
  readonly mimeType: Schema.decodeTo<Schema.optional<Schema.String>, Schema.optionalKey<Schema.String>, never, never>;
1015
+ /**
1016
+ * Optional additional metadata for the client.
1017
+ */
1018
+ readonly _meta: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Unknown>>, never, never>;
968
1019
  }>, {}> & Omit<Schema.Struct<{
969
1020
  /**
970
1021
  * The binary data of the item decoded from a base64-encoded string.
@@ -978,6 +1029,10 @@ declare const BlobResourceContents_base: Schema.Opaque<BlobResourceContents, Sch
978
1029
  * The MIME type of this resource, if known.
979
1030
  */
980
1031
  readonly mimeType: Schema.decodeTo<Schema.optional<Schema.String>, Schema.optionalKey<Schema.String>, never, never>;
1032
+ /**
1033
+ * Optional additional metadata for the client.
1034
+ */
1035
+ readonly _meta: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Unknown>>, never, never>;
981
1036
  }>, "Type">;
982
1037
  /**
983
1038
  * The contents of a binary resource, which can be represented as an Uint8Array
@@ -1008,7 +1063,7 @@ declare const ListResourcesResult_base: Schema.ExtendableClass<ListResourcesResu
1008
1063
  */
1009
1064
  export declare class ListResourcesResult extends ListResourcesResult_base {
1010
1065
  }
1011
- declare const ListResources_base: Rpc.Rpc<"resources/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListResourcesResult, typeof McpError, never, never>;
1066
+ declare const ListResources_base: Rpc.Rpc<"resources/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListResourcesResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
1012
1067
  /**
1013
1068
  * Sent from the client to request a list of resources the server has.
1014
1069
  *
@@ -1038,7 +1093,7 @@ declare const ListResourceTemplatesResult_base: Schema.ExtendableClass<ListResou
1038
1093
  */
1039
1094
  export declare class ListResourceTemplatesResult extends ListResourceTemplatesResult_base {
1040
1095
  }
1041
- declare const ListResourceTemplates_base: Rpc.Rpc<"resources/templates/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListResourceTemplatesResult, typeof McpError, never, never>;
1096
+ declare const ListResourceTemplates_base: Rpc.Rpc<"resources/templates/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListResourceTemplatesResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
1042
1097
  /**
1043
1098
  * Sent from the client to request a list of resource templates the server has.
1044
1099
  *
@@ -1095,7 +1150,7 @@ declare const ReadResource_base: Rpc.Rpc<"resources/read", Schema.Struct<{
1095
1150
  */
1096
1151
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
1097
1152
  }>>, never, never>;
1098
- }>, typeof ReadResourceResult, typeof McpError, never, never>;
1153
+ }>, typeof ReadResourceResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
1099
1154
  /**
1100
1155
  * Sent from the client to the server, to read a specific resource URI.
1101
1156
  *
@@ -1140,7 +1195,7 @@ declare const Subscribe_base: Rpc.Rpc<"resources/subscribe", Schema.Struct<{
1140
1195
  */
1141
1196
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
1142
1197
  }>>, never, never>;
1143
- }>, Schema.Void, typeof McpError, never, never>;
1198
+ }>, Schema.Void, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
1144
1199
  /**
1145
1200
  * Sent from the client to request resources/updated notifications from the
1146
1201
  * server whenever a particular resource changes.
@@ -1175,7 +1230,7 @@ declare const Unsubscribe_base: Rpc.Rpc<"resources/unsubscribe", Schema.Struct<{
1175
1230
  */
1176
1231
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
1177
1232
  }>>, never, never>;
1178
- }>, Schema.Void, typeof McpError, never, never>;
1233
+ }>, Schema.Void, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
1179
1234
  /**
1180
1235
  * Sent from the client to request cancellation of resources/updated
1181
1236
  * notifications from the server. This should follow a previous
@@ -1428,6 +1483,13 @@ declare const ResourceLink_base: Schema.Opaque<ResourceLink, Schema.Struct<{
1428
1483
  * window usage.
1429
1484
  */
1430
1485
  readonly size: Schema.decodeTo<Schema.optional<Schema.Number>, Schema.optionalKey<Schema.Number>, never, never>;
1486
+ /**
1487
+ * Optional additional metadata for the client.
1488
+ *
1489
+ * This parameter name is reserved by MCP to allow clients and servers to
1490
+ * attach additional metadata to resources.
1491
+ */
1492
+ readonly _meta: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Unknown>>, never, never>;
1431
1493
  }>, {}> & Omit<Schema.Struct<{
1432
1494
  readonly type: Schema.tag<"resource_link">;
1433
1495
  /**
@@ -1464,6 +1526,13 @@ declare const ResourceLink_base: Schema.Opaque<ResourceLink, Schema.Struct<{
1464
1526
  * window usage.
1465
1527
  */
1466
1528
  readonly size: Schema.decodeTo<Schema.optional<Schema.Number>, Schema.optionalKey<Schema.Number>, never, never>;
1529
+ /**
1530
+ * Optional additional metadata for the client.
1531
+ *
1532
+ * This parameter name is reserved by MCP to allow clients and servers to
1533
+ * attach additional metadata to resources.
1534
+ */
1535
+ readonly _meta: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Unknown>>, never, never>;
1467
1536
  }>, "Type">;
1468
1537
  /**
1469
1538
  * A resource that the server is capable of reading, included in a prompt or tool call result.
@@ -1519,7 +1588,7 @@ declare const ListPromptsResult_base: Schema.ExtendableClass<ListPromptsResult,
1519
1588
  */
1520
1589
  export declare class ListPromptsResult extends ListPromptsResult_base {
1521
1590
  }
1522
- declare const ListPrompts_base: Rpc.Rpc<"prompts/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListPromptsResult, typeof McpError, never, never>;
1591
+ declare const ListPrompts_base: Rpc.Rpc<"prompts/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListPromptsResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
1523
1592
  /**
1524
1593
  * Sent from the client to request a list of prompts and prompt templates the
1525
1594
  * server has.
@@ -1578,7 +1647,7 @@ declare const GetPrompt_base: Rpc.Rpc<"prompts/get", Schema.Struct<{
1578
1647
  */
1579
1648
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
1580
1649
  }>>, never, never>;
1581
- }>, typeof GetPromptResult, typeof McpError, never, never>;
1650
+ }>, typeof GetPromptResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
1582
1651
  /**
1583
1652
  * Used by the client to get a prompt provided by the server.
1584
1653
  *
@@ -1710,6 +1779,13 @@ declare const Tool_base: Schema.ExtendableClass<Tool, Schema.Struct<{
1710
1779
  * Optional additional tool information.
1711
1780
  */
1712
1781
  readonly annotations: Schema.decodeTo<Schema.optional<typeof ToolAnnotations>, Schema.optionalKey<typeof ToolAnnotations>, never, never>;
1782
+ /**
1783
+ * Optional additional metadata for the client.
1784
+ *
1785
+ * This parameter name is reserved by MCP to allow clients and servers to
1786
+ * attach additional metadata to resources.
1787
+ */
1788
+ readonly _meta: Schema.decodeTo<Schema.optional<Schema.$Record<Schema.String, Schema.Unknown>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Unknown>>, never, never>;
1713
1789
  }>, {}>;
1714
1790
  /**
1715
1791
  * Definition for a tool the client can call.
@@ -1740,7 +1816,7 @@ declare const ListToolsResult_base: Schema.ExtendableClass<ListToolsResult, Sche
1740
1816
  */
1741
1817
  export declare class ListToolsResult extends ListToolsResult_base {
1742
1818
  }
1743
- declare const ListTools_base: Rpc.Rpc<"tools/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListToolsResult, typeof McpError, never, never>;
1819
+ declare const ListTools_base: Rpc.Rpc<"tools/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListToolsResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
1744
1820
  /**
1745
1821
  * Sent from the client to request a list of tools the server has.
1746
1822
  *
@@ -1803,7 +1879,7 @@ declare const CallTool_base: Rpc.Rpc<"tools/call", Schema.Struct<{
1803
1879
  */
1804
1880
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
1805
1881
  }>>, never, never>;
1806
- }>, typeof CallToolResult, typeof McpError, never, never>;
1882
+ }>, typeof CallToolResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
1807
1883
  /**
1808
1884
  * Used by the client to invoke a tool provided by the server.
1809
1885
  *
@@ -1878,7 +1954,7 @@ declare const SetLevel_base: Rpc.Rpc<"logging/setLevel", Schema.Struct<{
1878
1954
  */
1879
1955
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
1880
1956
  }>>, never, never>;
1881
- }>, Schema.Void, typeof McpError, never, never>;
1957
+ }>, Schema.Void, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
1882
1958
  /**
1883
1959
  * A request from the client to the server, to enable or adjust logging.
1884
1960
  *
@@ -2066,7 +2142,7 @@ declare const CreateMessage_base: Rpc.Rpc<"sampling/createMessage", Schema.Struc
2066
2142
  * this metadata is provider-specific.
2067
2143
  */
2068
2144
  metadata: Schema.Any;
2069
- }>, typeof CreateMessageResult, typeof McpError, never, never>;
2145
+ }>, typeof CreateMessageResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
2070
2146
  /**
2071
2147
  * A request from the server to sample an LLM via the client. The client has
2072
2148
  * full discretion over which model to select. The client should also inform the
@@ -2193,7 +2269,7 @@ declare const Complete_base: Rpc.Rpc<"completion/complete", Schema.Struct<{
2193
2269
  */
2194
2270
  readonly arguments: optionalWithDefault<Schema.$Record<Schema.String, Schema.String>>;
2195
2271
  }>>;
2196
- }>, typeof CompleteResult, typeof McpError, never, never>;
2272
+ }>, typeof CompleteResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
2197
2273
  /**
2198
2274
  * A request from the client to the server, to ask for completion options.
2199
2275
  *
@@ -2237,7 +2313,7 @@ declare const ListRootsResult_base: Schema.ExtendableClass<ListRootsResult, Sche
2237
2313
  */
2238
2314
  export declare class ListRootsResult extends ListRootsResult_base {
2239
2315
  }
2240
- declare const ListRoots_base: Rpc.Rpc<"roots/list", Schema.UndefinedOr<typeof RequestMeta>, typeof ListRootsResult, typeof McpError, never, never>;
2316
+ declare const ListRoots_base: Rpc.Rpc<"roots/list", Schema.UndefinedOr<typeof RequestMeta>, typeof ListRootsResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
2241
2317
  /**
2242
2318
  * Sent from the server to request a list of root URIs from the client. Roots
2243
2319
  * allow servers to ask for specific directories or files to operate on. A
@@ -2333,7 +2409,7 @@ declare const Elicit_base: Rpc.Rpc<"elicitation/create", Schema.Struct<{
2333
2409
  * Only top-level properties are allowed, without nesting.
2334
2410
  */
2335
2411
  requestedSchema: Schema.Any;
2336
- }>, Schema.Union<readonly [typeof ElicitAcceptResult, typeof ElicitDeclineResult]>, typeof McpError, never, never>;
2412
+ }>, Schema.Union<readonly [typeof ElicitAcceptResult, typeof ElicitDeclineResult]>, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, never, never>;
2337
2413
  /**
2338
2414
  * @since 4.0.0
2339
2415
  * @category elicitation
@@ -2416,7 +2492,7 @@ export type FailureEncoded<Group extends RpcGroup.Any> = RpcGroup.Rpcs<Group> ex
2416
2492
  readonly id: string | number;
2417
2493
  readonly error: _Error["Encoded"];
2418
2494
  } : never : never;
2419
- declare const ClientRequestRpcs_base: RpcGroup.RpcGroup<Rpc.Rpc<"ping", Schema.UndefinedOr<typeof RequestMeta>, Schema.Struct<{}>, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"initialize", Schema.Struct<{
2495
+ declare const ClientRequestRpcs_base: RpcGroup.RpcGroup<Rpc.Rpc<"ping", Schema.UndefinedOr<typeof RequestMeta>, Schema.Struct<{}>, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"initialize", Schema.Struct<{
2420
2496
  /**
2421
2497
  * The latest version of the Model Context Protocol that the client
2422
2498
  * supports. The client MAY decide to support older versions as well.
@@ -2451,7 +2527,7 @@ declare const ClientRequestRpcs_base: RpcGroup.RpcGroup<Rpc.Rpc<"ping", Schema.U
2451
2527
  */
2452
2528
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2453
2529
  }>>, never, never>;
2454
- }>, typeof InitializeResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListResourcesResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/templates/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListResourceTemplatesResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/read", Schema.Struct<{
2530
+ }>, typeof InitializeResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListResourcesResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/templates/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListResourceTemplatesResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/read", Schema.Struct<{
2455
2531
  /**
2456
2532
  * The URI of the resource to read. The URI can use any protocol; it is up
2457
2533
  * to the server how to interpret it.
@@ -2476,7 +2552,7 @@ declare const ClientRequestRpcs_base: RpcGroup.RpcGroup<Rpc.Rpc<"ping", Schema.U
2476
2552
  */
2477
2553
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2478
2554
  }>>, never, never>;
2479
- }>, typeof ReadResourceResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/subscribe", Schema.Struct<{
2555
+ }>, typeof ReadResourceResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/subscribe", Schema.Struct<{
2480
2556
  /**
2481
2557
  * The URI of the resource to subscribe to. The URI can use any protocol;
2482
2558
  * it is up to the server how to interpret it.
@@ -2501,7 +2577,7 @@ declare const ClientRequestRpcs_base: RpcGroup.RpcGroup<Rpc.Rpc<"ping", Schema.U
2501
2577
  */
2502
2578
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2503
2579
  }>>, never, never>;
2504
- }>, Schema.Void, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/unsubscribe", Schema.Struct<{
2580
+ }>, Schema.Void, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/unsubscribe", Schema.Struct<{
2505
2581
  /**
2506
2582
  * The URI of the resource to subscribe to. The URI can use any protocol;
2507
2583
  * it is up to the server how to interpret it.
@@ -2526,7 +2602,7 @@ declare const ClientRequestRpcs_base: RpcGroup.RpcGroup<Rpc.Rpc<"ping", Schema.U
2526
2602
  */
2527
2603
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2528
2604
  }>>, never, never>;
2529
- }>, Schema.Void, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"prompts/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListPromptsResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"prompts/get", Schema.Struct<{
2605
+ }>, Schema.Void, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"prompts/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListPromptsResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"prompts/get", Schema.Struct<{
2530
2606
  /**
2531
2607
  * The name of the prompt or prompt template.
2532
2608
  */
@@ -2555,7 +2631,7 @@ declare const ClientRequestRpcs_base: RpcGroup.RpcGroup<Rpc.Rpc<"ping", Schema.U
2555
2631
  */
2556
2632
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2557
2633
  }>>, never, never>;
2558
- }>, typeof GetPromptResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"tools/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListToolsResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"tools/call", Schema.Struct<{
2634
+ }>, typeof GetPromptResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"tools/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListToolsResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"tools/call", Schema.Struct<{
2559
2635
  name: Schema.String;
2560
2636
  arguments: Schema.$Record<Schema.String, Schema.Any>;
2561
2637
  _meta: Schema.decodeTo<Schema.optional<Schema.Struct<{
@@ -2577,7 +2653,7 @@ declare const ClientRequestRpcs_base: RpcGroup.RpcGroup<Rpc.Rpc<"ping", Schema.U
2577
2653
  */
2578
2654
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2579
2655
  }>>, never, never>;
2580
- }>, typeof CallToolResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"logging/setLevel", Schema.Struct<{
2656
+ }>, typeof CallToolResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"logging/setLevel", Schema.Struct<{
2581
2657
  /**
2582
2658
  * The level of logging that the client wants to receive from the server.
2583
2659
  * The server should send all logs at this level and higher (i.e., more
@@ -2603,7 +2679,7 @@ declare const ClientRequestRpcs_base: RpcGroup.RpcGroup<Rpc.Rpc<"ping", Schema.U
2603
2679
  */
2604
2680
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2605
2681
  }>>, never, never>;
2606
- }>, Schema.Void, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"completion/complete", Schema.Struct<{
2682
+ }>, Schema.Void, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"completion/complete", Schema.Struct<{
2607
2683
  readonly ref: Schema.Union<readonly [typeof PromptReference, typeof ResourceReference]>;
2608
2684
  /**
2609
2685
  * The argument's information
@@ -2627,7 +2703,7 @@ declare const ClientRequestRpcs_base: RpcGroup.RpcGroup<Rpc.Rpc<"ping", Schema.U
2627
2703
  */
2628
2704
  readonly arguments: optionalWithDefault<Schema.$Record<Schema.String, Schema.String>>;
2629
2705
  }>>;
2630
- }>, typeof CompleteResult, typeof McpError, typeof McpServerClientMiddleware, never>>;
2706
+ }>, typeof CompleteResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never>>;
2631
2707
  /**
2632
2708
  * @since 4.0.0
2633
2709
  * @category protocol
@@ -2651,7 +2727,7 @@ export declare class ClientNotificationRpcs extends ClientNotificationRpcs_base
2651
2727
  * @category protocol
2652
2728
  */
2653
2729
  export type ClientNotificationEncoded = NotificationEncoded<typeof ClientNotificationRpcs>;
2654
- declare const ClientRpcs_base: RpcGroup.RpcGroup<typeof InitializedNotification | typeof CancelledNotification | typeof ProgressNotification | typeof RootsListChangedNotification | Rpc.Rpc<"ping", Schema.UndefinedOr<typeof RequestMeta>, Schema.Struct<{}>, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"initialize", Schema.Struct<{
2730
+ declare const ClientRpcs_base: RpcGroup.RpcGroup<typeof InitializedNotification | typeof CancelledNotification | typeof ProgressNotification | typeof RootsListChangedNotification | Rpc.Rpc<"ping", Schema.UndefinedOr<typeof RequestMeta>, Schema.Struct<{}>, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"initialize", Schema.Struct<{
2655
2731
  /**
2656
2732
  * The latest version of the Model Context Protocol that the client
2657
2733
  * supports. The client MAY decide to support older versions as well.
@@ -2686,7 +2762,7 @@ declare const ClientRpcs_base: RpcGroup.RpcGroup<typeof InitializedNotification
2686
2762
  */
2687
2763
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2688
2764
  }>>, never, never>;
2689
- }>, typeof InitializeResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListResourcesResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/templates/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListResourceTemplatesResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/read", Schema.Struct<{
2765
+ }>, typeof InitializeResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListResourcesResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/templates/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListResourceTemplatesResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/read", Schema.Struct<{
2690
2766
  /**
2691
2767
  * The URI of the resource to read. The URI can use any protocol; it is up
2692
2768
  * to the server how to interpret it.
@@ -2711,7 +2787,7 @@ declare const ClientRpcs_base: RpcGroup.RpcGroup<typeof InitializedNotification
2711
2787
  */
2712
2788
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2713
2789
  }>>, never, never>;
2714
- }>, typeof ReadResourceResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/subscribe", Schema.Struct<{
2790
+ }>, typeof ReadResourceResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/subscribe", Schema.Struct<{
2715
2791
  /**
2716
2792
  * The URI of the resource to subscribe to. The URI can use any protocol;
2717
2793
  * it is up to the server how to interpret it.
@@ -2736,7 +2812,7 @@ declare const ClientRpcs_base: RpcGroup.RpcGroup<typeof InitializedNotification
2736
2812
  */
2737
2813
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2738
2814
  }>>, never, never>;
2739
- }>, Schema.Void, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/unsubscribe", Schema.Struct<{
2815
+ }>, Schema.Void, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"resources/unsubscribe", Schema.Struct<{
2740
2816
  /**
2741
2817
  * The URI of the resource to subscribe to. The URI can use any protocol;
2742
2818
  * it is up to the server how to interpret it.
@@ -2761,7 +2837,7 @@ declare const ClientRpcs_base: RpcGroup.RpcGroup<typeof InitializedNotification
2761
2837
  */
2762
2838
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2763
2839
  }>>, never, never>;
2764
- }>, Schema.Void, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"prompts/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListPromptsResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"prompts/get", Schema.Struct<{
2840
+ }>, Schema.Void, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"prompts/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListPromptsResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"prompts/get", Schema.Struct<{
2765
2841
  /**
2766
2842
  * The name of the prompt or prompt template.
2767
2843
  */
@@ -2790,7 +2866,7 @@ declare const ClientRpcs_base: RpcGroup.RpcGroup<typeof InitializedNotification
2790
2866
  */
2791
2867
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2792
2868
  }>>, never, never>;
2793
- }>, typeof GetPromptResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"tools/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListToolsResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"tools/call", Schema.Struct<{
2869
+ }>, typeof GetPromptResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"tools/list", Schema.UndefinedOr<typeof PaginatedRequestMeta>, typeof ListToolsResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"tools/call", Schema.Struct<{
2794
2870
  name: Schema.String;
2795
2871
  arguments: Schema.$Record<Schema.String, Schema.Any>;
2796
2872
  _meta: Schema.decodeTo<Schema.optional<Schema.Struct<{
@@ -2812,7 +2888,7 @@ declare const ClientRpcs_base: RpcGroup.RpcGroup<typeof InitializedNotification
2812
2888
  */
2813
2889
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2814
2890
  }>>, never, never>;
2815
- }>, typeof CallToolResult, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"logging/setLevel", Schema.Struct<{
2891
+ }>, typeof CallToolResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"logging/setLevel", Schema.Struct<{
2816
2892
  /**
2817
2893
  * The level of logging that the client wants to receive from the server.
2818
2894
  * The server should send all logs at this level and higher (i.e., more
@@ -2838,7 +2914,7 @@ declare const ClientRpcs_base: RpcGroup.RpcGroup<typeof InitializedNotification
2838
2914
  */
2839
2915
  readonly progressToken: Schema.decodeTo<Schema.optional<Schema.Union<[Schema.String, Schema.Number]>>, Schema.optionalKey<Schema.Union<[Schema.String, Schema.Number]>>, never, never>;
2840
2916
  }>>, never, never>;
2841
- }>, Schema.Void, typeof McpError, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"completion/complete", Schema.Struct<{
2917
+ }>, Schema.Void, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never> | Rpc.Rpc<"completion/complete", Schema.Struct<{
2842
2918
  readonly ref: Schema.Union<readonly [typeof PromptReference, typeof ResourceReference]>;
2843
2919
  /**
2844
2920
  * The argument's information
@@ -2862,7 +2938,7 @@ declare const ClientRpcs_base: RpcGroup.RpcGroup<typeof InitializedNotification
2862
2938
  */
2863
2939
  readonly arguments: optionalWithDefault<Schema.$Record<Schema.String, Schema.String>>;
2864
2940
  }>>;
2865
- }>, typeof CompleteResult, typeof McpError, typeof McpServerClientMiddleware, never>>;
2941
+ }>, typeof CompleteResult, Schema.Union<readonly [typeof ParseError, typeof InvalidRequest, typeof MethodNotFound, typeof InvalidParams, typeof InternalError, typeof McpErrorBase]>, typeof McpServerClientMiddleware, never>>;
2866
2942
  /**
2867
2943
  * @since 4.0.0
2868
2944
  * @category protocol
@@ -1 +1 @@
1
- {"version":3,"file":"McpSchema.d.ts","sourceRoot":"","sources":["../../../src/unstable/ai/McpSchema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"McpSchema.d.ts","sourceRoot":"","sources":["../../../src/unstable/ai/McpSchema.ts"],"names":[],"mappings":"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"}