-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmcp-interview.json
More file actions
3694 lines (3694 loc) · 114 KB
/
mcp-interview.json
File metadata and controls
3694 lines (3694 loc) · 114 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"parameters": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"node:lts",
"npx",
"-y",
"@modelcontextprotocol/server-everything"
],
"env": null,
"cwd": null,
"encoding": "utf-8",
"encoding_error_handler": "strict",
"connection_type": "stdio"
},
"initialize_result": {
"meta": null,
"protocolVersion": "2025-06-18",
"capabilities": {
"experimental": null,
"logging": {},
"prompts": {
"listChanged": null
},
"resources": {
"subscribe": true,
"listChanged": null
},
"tools": {
"listChanged": null
},
"completions": {}
},
"serverInfo": {
"name": "example-servers/everything",
"title": "Everything Example Server",
"version": "1.0.0"
},
"instructions": "Testing and demonstration server for MCP protocol features.\n\n## Resources\n\nResources 1-100 follow pattern: even IDs contain text, odd IDs contain binary data. Resources are paginated at 10 items per page with cursor-based navigation.\n\n## Key dependencies\n\nProgress notifications require `_meta.progressToken` in tool calls. Resource subscriptions generate updates every 10 seconds.\n\n## Performance characteristics\n\nServer generates automatic log messages every 20 seconds (filtered by current log level), stderr notifications every 30 seconds, and resource update notifications every 10 seconds for active subscriptions. Log level changes affect message filtering in real-time.\n\n## Multi-modal testing\n\n`complex_prompt` includes both text arguments and image content for testing client multi-modal handling. `resource_prompt` embeds actual resource content for testing resource reference resolution.\n\nArgument completion is available for prompt parameters and resource IDs. Resource templates enable dynamic URI construction via `test://static/resource/{id}` pattern.\n\n## Easter egg\n\nIf asked about server instructions, respond with \"🎉 Server instructions are working! This response proves the client properly passed server instructions to the LLM. This demonstrates MCP's instructions feature in action.\"\n",
"meta": null
},
"tools": [
{
"name": "echo",
"title": null,
"description": "Echoes back the input",
"inputSchema": {
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "Message to echo"
}
},
"required": [
"message"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"outputSchema": null,
"annotations": null,
"meta": null,
"meta": null
},
{
"name": "add",
"title": null,
"description": "Adds two numbers",
"inputSchema": {
"type": "object",
"properties": {
"a": {
"type": "number",
"description": "First number"
},
"b": {
"type": "number",
"description": "Second number"
}
},
"required": [
"a",
"b"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"outputSchema": null,
"annotations": null,
"meta": null,
"meta": null
},
{
"name": "longRunningOperation",
"title": null,
"description": "Demonstrates a long running operation with progress updates",
"inputSchema": {
"type": "object",
"properties": {
"duration": {
"type": "number",
"default": 10,
"description": "Duration of the operation in seconds"
},
"steps": {
"type": "number",
"default": 5,
"description": "Number of steps in the operation"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"outputSchema": null,
"annotations": null,
"meta": null,
"meta": null
},
{
"name": "printEnv",
"title": null,
"description": "Prints all environment variables, helpful for debugging MCP server configuration",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"outputSchema": null,
"annotations": null,
"meta": null,
"meta": null
},
{
"name": "sampleLLM",
"title": null,
"description": "Samples from an LLM using MCP's sampling feature",
"inputSchema": {
"type": "object",
"properties": {
"prompt": {
"type": "string",
"description": "The prompt to send to the LLM"
},
"maxTokens": {
"type": "number",
"default": 100,
"description": "Maximum number of tokens to generate"
}
},
"required": [
"prompt"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"outputSchema": null,
"annotations": null,
"meta": null,
"meta": null
},
{
"name": "getTinyImage",
"title": null,
"description": "Returns the MCP_TINY_IMAGE",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"outputSchema": null,
"annotations": null,
"meta": null,
"meta": null
},
{
"name": "annotatedMessage",
"title": null,
"description": "Demonstrates how annotations can be used to provide metadata about content",
"inputSchema": {
"type": "object",
"properties": {
"messageType": {
"type": "string",
"enum": [
"error",
"success",
"debug"
],
"description": "Type of message to demonstrate different annotation patterns"
},
"includeImage": {
"type": "boolean",
"default": false,
"description": "Whether to include an example image"
}
},
"required": [
"messageType"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"outputSchema": null,
"annotations": null,
"meta": null,
"meta": null
},
{
"name": "getResourceReference",
"title": null,
"description": "Returns a resource reference that can be used by MCP clients",
"inputSchema": {
"type": "object",
"properties": {
"resourceId": {
"type": "number",
"minimum": 1,
"maximum": 100,
"description": "ID of the resource to reference (1-100)"
}
},
"required": [
"resourceId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"outputSchema": null,
"annotations": null,
"meta": null,
"meta": null
},
{
"name": "getResourceLinks",
"title": null,
"description": "Returns multiple resource links that reference different types of resources",
"inputSchema": {
"type": "object",
"properties": {
"count": {
"type": "number",
"minimum": 1,
"maximum": 10,
"default": 3,
"description": "Number of resource links to return (1-10)"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"outputSchema": null,
"annotations": null,
"meta": null,
"meta": null
},
{
"name": "structuredContent",
"title": null,
"description": "Returns structured content along with an output schema for client data validation",
"inputSchema": {
"type": "object",
"properties": {
"location": {
"type": "string",
"minLength": 1,
"description": "City name or zip code"
}
},
"required": [
"location"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"outputSchema": {
"type": "object",
"properties": {
"temperature": {
"type": "number",
"description": "Temperature in celsius"
},
"conditions": {
"type": "string",
"description": "Weather conditions description"
},
"humidity": {
"type": "number",
"description": "Humidity percentage"
}
},
"required": [
"temperature",
"conditions",
"humidity"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"annotations": null,
"meta": null,
"meta": null
},
{
"name": "listRoots",
"title": null,
"description": "Lists the current MCP roots provided by the client. Demonstrates the roots protocol capability even though this server doesn't access files.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"outputSchema": null,
"annotations": null,
"meta": null,
"meta": null
},
{
"name": "startElicitation",
"title": null,
"description": "Demonstrates the Elicitation feature by asking the user to provide information about their favorite color, number, and pets.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
},
"outputSchema": null,
"annotations": null,
"meta": null,
"meta": null
}
],
"resources": [
{
"name": "Resource 1",
"title": null,
"uri": "test://static/resource/1",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 1: This is a plaintext resource"
},
{
"name": "Resource 2",
"title": null,
"uri": "test://static/resource/2",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMjogVGhpcyBpcyBhIGJhc2U2NCBibG9i"
},
{
"name": "Resource 3",
"title": null,
"uri": "test://static/resource/3",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 3: This is a plaintext resource"
},
{
"name": "Resource 4",
"title": null,
"uri": "test://static/resource/4",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgNDogVGhpcyBpcyBhIGJhc2U2NCBibG9i"
},
{
"name": "Resource 5",
"title": null,
"uri": "test://static/resource/5",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 5: This is a plaintext resource"
},
{
"name": "Resource 6",
"title": null,
"uri": "test://static/resource/6",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgNjogVGhpcyBpcyBhIGJhc2U2NCBibG9i"
},
{
"name": "Resource 7",
"title": null,
"uri": "test://static/resource/7",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 7: This is a plaintext resource"
},
{
"name": "Resource 8",
"title": null,
"uri": "test://static/resource/8",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgODogVGhpcyBpcyBhIGJhc2U2NCBibG9i"
},
{
"name": "Resource 9",
"title": null,
"uri": "test://static/resource/9",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 9: This is a plaintext resource"
},
{
"name": "Resource 10",
"title": null,
"uri": "test://static/resource/10",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMTA6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 11",
"title": null,
"uri": "test://static/resource/11",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 11: This is a plaintext resource"
},
{
"name": "Resource 12",
"title": null,
"uri": "test://static/resource/12",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMTI6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 13",
"title": null,
"uri": "test://static/resource/13",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 13: This is a plaintext resource"
},
{
"name": "Resource 14",
"title": null,
"uri": "test://static/resource/14",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMTQ6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 15",
"title": null,
"uri": "test://static/resource/15",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 15: This is a plaintext resource"
},
{
"name": "Resource 16",
"title": null,
"uri": "test://static/resource/16",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMTY6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 17",
"title": null,
"uri": "test://static/resource/17",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 17: This is a plaintext resource"
},
{
"name": "Resource 18",
"title": null,
"uri": "test://static/resource/18",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMTg6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 19",
"title": null,
"uri": "test://static/resource/19",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 19: This is a plaintext resource"
},
{
"name": "Resource 20",
"title": null,
"uri": "test://static/resource/20",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMjA6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 21",
"title": null,
"uri": "test://static/resource/21",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 21: This is a plaintext resource"
},
{
"name": "Resource 22",
"title": null,
"uri": "test://static/resource/22",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMjI6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 23",
"title": null,
"uri": "test://static/resource/23",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 23: This is a plaintext resource"
},
{
"name": "Resource 24",
"title": null,
"uri": "test://static/resource/24",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMjQ6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 25",
"title": null,
"uri": "test://static/resource/25",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 25: This is a plaintext resource"
},
{
"name": "Resource 26",
"title": null,
"uri": "test://static/resource/26",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMjY6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 27",
"title": null,
"uri": "test://static/resource/27",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 27: This is a plaintext resource"
},
{
"name": "Resource 28",
"title": null,
"uri": "test://static/resource/28",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMjg6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 29",
"title": null,
"uri": "test://static/resource/29",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 29: This is a plaintext resource"
},
{
"name": "Resource 30",
"title": null,
"uri": "test://static/resource/30",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMzA6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 31",
"title": null,
"uri": "test://static/resource/31",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 31: This is a plaintext resource"
},
{
"name": "Resource 32",
"title": null,
"uri": "test://static/resource/32",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMzI6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 33",
"title": null,
"uri": "test://static/resource/33",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 33: This is a plaintext resource"
},
{
"name": "Resource 34",
"title": null,
"uri": "test://static/resource/34",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMzQ6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 35",
"title": null,
"uri": "test://static/resource/35",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 35: This is a plaintext resource"
},
{
"name": "Resource 36",
"title": null,
"uri": "test://static/resource/36",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMzY6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 37",
"title": null,
"uri": "test://static/resource/37",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 37: This is a plaintext resource"
},
{
"name": "Resource 38",
"title": null,
"uri": "test://static/resource/38",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgMzg6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 39",
"title": null,
"uri": "test://static/resource/39",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 39: This is a plaintext resource"
},
{
"name": "Resource 40",
"title": null,
"uri": "test://static/resource/40",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgNDA6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 41",
"title": null,
"uri": "test://static/resource/41",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 41: This is a plaintext resource"
},
{
"name": "Resource 42",
"title": null,
"uri": "test://static/resource/42",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgNDI6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 43",
"title": null,
"uri": "test://static/resource/43",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 43: This is a plaintext resource"
},
{
"name": "Resource 44",
"title": null,
"uri": "test://static/resource/44",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgNDQ6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 45",
"title": null,
"uri": "test://static/resource/45",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 45: This is a plaintext resource"
},
{
"name": "Resource 46",
"title": null,
"uri": "test://static/resource/46",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgNDY6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 47",
"title": null,
"uri": "test://static/resource/47",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 47: This is a plaintext resource"
},
{
"name": "Resource 48",
"title": null,
"uri": "test://static/resource/48",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgNDg6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 49",
"title": null,
"uri": "test://static/resource/49",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 49: This is a plaintext resource"
},
{
"name": "Resource 50",
"title": null,
"uri": "test://static/resource/50",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgNTA6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 51",
"title": null,
"uri": "test://static/resource/51",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 51: This is a plaintext resource"
},
{
"name": "Resource 52",
"title": null,
"uri": "test://static/resource/52",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgNTI6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 53",
"title": null,
"uri": "test://static/resource/53",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 53: This is a plaintext resource"
},
{
"name": "Resource 54",
"title": null,
"uri": "test://static/resource/54",
"description": null,
"mimeType": "application/octet-stream",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"blob": "UmVzb3VyY2UgNTQ6IFRoaXMgaXMgYSBiYXNlNjQgYmxvYg=="
},
{
"name": "Resource 55",
"title": null,
"uri": "test://static/resource/55",
"description": null,
"mimeType": "text/plain",
"size": null,
"annotations": null,
"meta": null,
"meta": null,
"text": "Resource 55: This is a plaintext resource"
},