-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclassified_reviews.json
7312 lines (7312 loc) · 370 KB
/
classified_reviews.json
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
{
"Customer 1": {
"Food": "One of the best steaks in town, no surprise there. I especially liked the baked potato with cheese sauce.",
"Service": "None",
"Other": "Our after dinner drink in the bar was lovely."
},
"Customer 2": {
"Food": "None",
"Service": "the service was exceptional!",
"Other": "Best steakhouse experience we've had in a long time, Truly made our date night marvelous."
},
"Customer 3": {
"Food": "The best steak you can get",
"Service": "experienced staff that love their work",
"Other": "in a genuine steak house environment. Can't get any better."
},
"Customer 4": {
"Food": "None",
"Service": "None",
"Other": "Celebrating a new job."
},
"Customer 5": {
"Food": "Food was delicious. The steak was perfectly cooked to our specifications.",
"Service": "very attentive service",
"Other": "Old school steakhouse vibe. Remember steakhouses are not inexpensive! But it was worth it."
},
"Customer 6": {
"Food": "Amazing food and cocktails",
"Service": "service was beyond exceptional",
"Other": "None"
},
"Customer 7": {
"Food": "food was absolutely great",
"Service": "service was absolutely great",
"Other": "It was our 32 wedding anniversary and the overall experience was absolutely great"
},
"Customer 8": {
"Food": "Steak was grisly, Food value was expensive to quality",
"Service": "Service was good",
"Other": "location was good, prices was very high compared to other fine dining restaurants"
},
"Customer 9": {
"Food": "Food was good but just average really which isn't a terrible thing. Just not fantastic.",
"Service": "None",
"Other": "Cool old school steakhouse vibes which I do appreciate. Crazy extensive wine list."
},
"Customer 10": {
"Food": "None",
"Service": "None",
"Other": "A favorite for us when in Seattle! Just happened to be after a Seahawks game which was fun to see the fans!"
},
"Customer 11": {
"Food": "crab cakes, Caesar salad, filet, and sides were well worth it",
"Service": "The service was out of this world",
"Other": "prices are high"
},
"Customer 12": {
"Food": "even better food",
"Service": "Spectacular customer service",
"Other": "great atmosphere"
},
"Customer 13": {
"Food": "Awesome Meal",
"Service": "Fantastic Staff!",
"Other": "We'll be back next time we're in Seattle"
},
"Customer 14": {
"Food": "all the dishes were very tasty",
"Service": "None",
"Other": "An amazing dinning experience. The \"Usual\" cockatil was something else. A true American steakhouse experience"
},
"Customer 15": {
"Food": "My steak was over cooked, mediocre food",
"Service": "Disappointed in the service, as our waiter had too many tables. We waited so long. The waiter did not acknowledge dessert until we told him, took 20 minutes to figure it out. Slow service.",
"Other": "For the prices they charge they need to get back to the service and food quality that made them what they were."
},
"Customer 16": {
"Food": "Steak cooked as ordered, steak was bland. Brusselsprouts were good, carrots were overcooked.",
"Service": "Server old school steakhouse uninterested vibe.",
"Other": "Nothing I will remember about the meal in a week except the price."
},
"Customer 17": {
"Food": "The carrot cake was over the top! Best dessert ever!",
"Service": "None",
"Other": "The drinks and atmosphere was perfect! We sat in the bar and had an early dinner before a concert. We cannot wait to come back."
},
"Customer 18": {
"Food": "Great food",
"Service": "Great service from server. Somm not that friendly and very rushed. Was throwing cork on table and rushing away before a question could be asked. Yet when an Asian group was seated next to us, he spent all the time in the world with them.",
"Other": "None"
},
"Customer 19": {
"Food": "Had one my favorite steaks",
"Service": "None",
"Other": "Overall another great meal!"
},
"Customer 20": {
"Food": "The steak is poor quality. Delmonico was flavorless and needed to be salted to make it more palatable. We have had much better steaks at a much lower price point",
"Service": "Our server was very good",
"Other": "The MG is way overpriced. Their policy of adding a 20% service charge which does not go directly to the server and then gets sales tax in top of it is ludicrous"
},
"Customer 21": {
"Food": "wonderful food. Portions have not shrunk as in most other restaurants",
"Service": "Excellent service",
"Other": "I highly recommend the Met"
},
"Customer 22": {
"Food": "None",
"Service": "Experienced unreasonable hospitality! team are terrific!",
"Other": "None"
},
"Customer 23": {
"Food": "Wagyu Meatballs were tasty with a little kick, Top Sirloin was well seasoned and cooked to perfection, Shrimp had a bad fishy taste, Spinach was delicious",
"Service": "Excellent Customer Service. Our waiter was amazing! Took the shrimp off after we mentioned the bad taste",
"Other": "Great Atmosphere. Would try again in the future for HH"
},
"Customer 24": {
"Food": "As usual,the food is fabulous. We also tried a couple of Happy hour items and we were not disappointed.",
"Service": "None",
"Other": "We had a wonderful time to the bar. Great restaurant."
},
"Customer 25": {
"Food": "None",
"Service": "None",
"Other": "Always great to visit the Met! My kids favorite."
},
"Customer 26": {
"Food": "The food was amazing",
"Service": "my server made the experience even better",
"Other": "None"
},
"Customer 27": {
"Food": "wedge salad to share, French onion soup, Chateaubriand with a baked potato and asparagus with bernaise, and bananas foster for dessert",
"Service": "We had a wonderful server who was prompt with our courses and cognizant of our timing. The table side presentation is always so enjoyable",
"Other": "We had a wonderful date night. It is always a treat dining at the Met! We will be back again soon!"
},
"Customer 28": {
"Food": "Had the prime and wagyu filet combo, loaded baked potato, creamed spinach, and wedge salad. Steak was perfectly prepared. Best creamed spinach I have ever had. Leftovers made 3 additional meals!",
"Service": "None",
"Other": "Overall is was a lovely meal in a great old school steakhouse."
},
"Customer 29": {
"Food": "2 of the 3 steaks that we ordered arrived cooked incorrectly. We requested medium and the steaks were rare at best. Had to send them back and eat the vegetables while we waited. Came backed cooked correctly. Once corrected, they were delicious.",
"Service": "Great service. Nice booth as requested.",
"Other": "we expected that a well established steak house would be able to cook the steaks as requested."
},
"Customer 30": {
"Food": "The drinks and food was excellent",
"Service": "Jenny our server was excellent",
"Other": "We went there for my wife's birthday and it didn't disappoint! I believe it was our best restaurant choice in Seattle that we visited."
},
"Customer 31": {
"Food": "None",
"Service": "None",
"Other": "Seattle's go-to place. Never goes wrong at this place."
},
"Customer 32": {
"Food": "None",
"Service": "None",
"Other": "Prices are very high and a 20% service charge is really steep."
},
"Customer 33": {
"Food": "Best steak in the city",
"Service": "Our server is the best",
"Other": "None"
},
"Customer 34": {
"Food": "None",
"Service": "None",
"Other": "Valentines Day"
},
"Customer 35": {
"Food": "the hybrid steak was very tough from it being 90% gristle",
"Service": "every employee was very nice. For some reason our waiter just stopped attending to us and I could hear him conversating with the tables around us. Waited forever for a refill on our drinks and food and the waiter never even bothered to ask how the food was",
"Other": "It was our first time eating here. Very disappointed about my experience here. First and last."
},
"Customer 36": {
"Food": "None",
"Service": "None",
"Other": "Our dining experience was excellent."
},
"Customer 37": {
"Food": "The food was good but not great. So pretty good but not great meals",
"Service": "None",
"Other": "I have many fond memories of eating here but this last time was just OK. I realize that prices are higher all around but the cost was outrageously high."
},
"Customer 38": {
"Food": "None",
"Service": "None",
"Other": "Always a special treat!"
},
"Customer 39": {
"Food": "Excellent steaks, as always!",
"Service": "We always feel extremely well taken care of at the Met. Our waiter was just the perfect mix of funny and attentive, but knew when we needed our space to talk.",
"Other": "Old school, top shelf!"
},
"Customer 40": {
"Food": "Had the best dinner",
"Service": "service! Always the best place to go",
"Other": "None"
},
"Customer 41": {
"Food": "None",
"Service": "None",
"Other": "Everything was wonderful!"
},
"Customer 42": {
"Food": "The food was spectacular and as leftovers they were just as good!",
"Service": "excellent servers. came around and had a great conversation with us and took our pictures outside the restaurant as we were about to leave",
"Other": "None"
},
"Customer 43": {
"Food": "roasted bone marrow on crostini with hazelnut romesco sauce and pickled shallots, house field green salad with balanced flavors, sublime Maine Lobster Bisque, Japanese A5 Snow Beef Filet, bourbon aged striploin cooked medium rare, mashed potatoes & baked potato with classic toppings, Hot Apple Pie flambeed tableside",
"Service": "staff was polite and attentive from reservation check in & coat check, throughout meal courses, general manager stopped by to check on meal",
"Other": "classic steakhouse atmosphere, dining before a performance at the Paramount, planning to return for anniversary celebration"
},
"Customer 44": {
"Food": "The appetizers and soups were excellent. The steaks were perfect; just beware the degree of \"doneness\" was less that typical at most restaurants. Those of our party who did not order beef enjoyed excellent seafood entrees. The desserts were no exception; in particular, the carrot cake was \"best in class!\"",
"Service": "the service, which was top notch professional, knowledgable, and attentive (without being intrusive). the wine recommendation",
"Other": "Dining was one of those uncommon special experiences. Every aspect of the experience was picture perfect - cocktails in the bar"
},
"Customer 45": {
"Food": "None",
"Service": "Lathrop, our server, was exceptionally attentive and helpful with suggestions, playing off our humor perfectly too.",
"Other": "This entire experience was absolutely phenomenal! Not a detail out of place! They have everything down to a perfect science. I highly recommend this place. I will be dreaming about this experience for a good long time."
},
"Customer 46": {
"Food": "None",
"Service": "None",
"Other": "Amazing experience. 10/10"
},
"Customer 47": {
"Food": "The food is amazing",
"Service": "None",
"Other": "My favorite place to go on a date with my husband"
},
"Customer 48": {
"Food": "None",
"Service": "None",
"Other": "It was okay, but not fabulous. Pricey for sure."
},
"Customer 49": {
"Food": "None",
"Service": "None",
"Other": "Our 6 year anniversary"
},
"Customer 50": {
"Food": "The food was amazing & so worth it!",
"Service": "The service was amazing and everyone is so nice!",
"Other": "The food was pricey, 10/10!"
},
"Customer 51": {
"Food": "The prawn cocktail, so fresh out of the water I was convinced they jumped. Yukon Gold potato pancakes with saffron butter and chives, indulgent and perfectly made. Black Hawk steak from Kentucky - every slice was worth making, and every bite clearly worth taking.",
"Service": "was an incredible waiter, your staff, your timing",
"Other": "excellent venue, Thank you for setting the bar for steakhouses"
},
"Customer 52": {
"Food": "We enjoyed our meal",
"Service": "Service was great!",
"Other": "It's a wonderful experience. Highly recommended"
},
"Customer 53": {
"Food": "None",
"Service": "None",
"Other": "Anniversary"
},
"Customer 54": {
"Food": "None",
"Service": "None",
"Other": "Just not as good as it used to be. Very disappointing!"
},
"Customer 55": {
"Food": "The Met Long Bone Ribeye was cooked to perfection! Banana's Foster flamed at our tableside",
"Service": "very attentive but not too attentive. Always a pleasure to have him as our server! Made me a fantastic Manhattan",
"Other": "so good I had a second one instead of wine with my meal! a show with our dessert!"
},
"Customer 56": {
"Food": "The food was top notch",
"Service": "Our server really knew her business, paying attention to every detail",
"Other": "Everyone had a memorable experience!"
},
"Customer 57": {
"Food": "The steaks were cooked perfectly, the appetizers were delicious especially the calamari, and the bananas foster was so warm and sweet",
"Service": "friendliness of all the staff",
"Other": "The pricing was all I had an issue with, with the same service and quality of food half the price in other restaurants. The ambiance of the restaurant itself. Will dine here again definitely."
},
"Customer 58": {
"Food": "None",
"Service": "None",
"Other": "Very memorable!!"
},
"Customer 59": {
"Food": "Steaks were disappointing. Flavor wasn't there. Salad delicious. Apps delicious",
"Service": "Bartenders awesome",
"Other": "Drinks terrific"
},
"Customer 60": {
"Food": "The steak was delicious. The baked potato could've been baked more - it was pretty firm. My husband enjoyed the calamari.",
"Service": "Our server was amazing!",
"Other": "None"
},
"Customer 61": {
"Food": "From the Lobster bisque to the bananas foster, he food was perfect. The ribeye was exactly as advertised \"the best steak\". The lobster bisque is worth the trip. It was so very rich but not overly so.",
"Service": "None",
"Other": "This is a terrific restaurant. I have nothing negative to say. I found the prices reasonable considering the preparation, quality, and service at the restaurant. I'll make this a must go the next time I return."
},
"Customer 62": {
"Food": "unbelievable food",
"Service": "special service",
"Other": "Best experience ever"
},
"Customer 63": {
"Food": "None",
"Service": "None",
"Other": "There are not enough accolades for this place. Simply. The. Best."
},
"Customer 64": {
"Food": "the steaks are excellent, and my vanilla bean ice cream gave me all the warmth and fuzzies I needed",
"Service": "my waiter was everything",
"Other": "Great ambiance, and the wine selection is superb. Thanks for a lovely evening."
},
"Customer 65": {
"Food": "None",
"Service": "None",
"Other": "Great time at The Met! Took some family who were visiting Seattle for the firs time...it did not disappoint!"
},
"Customer 66": {
"Food": "None",
"Service": "None",
"Other": "Good,but pricey considering a 20 % service charge that goes only to the restaurant and not to the servers or staff. Add another 15-20% on top of that to your waiters. And you are paying roughly 40 % in service charges which is frankly ridiculous and greedy or don't tip the waiters"
},
"Customer 67": {
"Food": "top sirloin was very tough and undercooked, Mac and cheese was the best we've had, the bread was delicious, the beverages were tasty",
"Service": "waiter was amazing!! Very personable and made our visit great!",
"Other": "overall good experience, would go back but would order a different steak"
},
"Customer 68": {
"Food": "excellent food",
"Service": "excellent service",
"Other": "None"
},
"Customer 69": {
"Food": "Good food!",
"Service": "Great staff! They made small mistake, but went out of their way to correct it.",
"Other": "It's just expensive! Otherwise, awesome!"
},
"Customer 70": {
"Food": "None",
"Service": "None",
"Other": "We had an amazing time celebrating our wedding anniversary"
},
"Customer 71": {
"Food": "calamari was a little overcooked because it was all quit rubbery. The flavor wasn't bad. The steaks we had were very good they were cooked to perfection.",
"Service": "None",
"Other": "None"
},
"Customer 72": {
"Food": "the food - absolutely outstanding",
"Service": "the service - absolutely outstanding",
"Other": "the wine - absolutely outstanding"
},
"Customer 73": {
"Food": "Food excellent, desserts amazing.",
"Service": "Our waiter was fantastic and very knowledgeable about the entire menu selection including wines.",
"Other": "None"
},
"Customer 74": {
"Food": "Delicious food",
"Service": "super personable manager",
"Other": "We loved this spot for a birthday dinner. We will be back!"
},
"Customer 75": {
"Food": "None",
"Service": "From time greeted till departure everything was excellent",
"Other": "Travelled worldwide and this is one of the true steakhouses ever dined in. Great place!"
},
"Customer 76": {
"Food": "food was to die for, great cocktails",
"Service": "The waiter was amazing",
"Other": "just a perfect place for any occasion or special occasion. Really hope to go back soon!"
},
"Customer 77": {
"Food": "Wagyu beef",
"Service": "server told me that the restaurant takes half of his gratuity",
"Other": "This was amazing, excellent, great spot for my 60th birthday. I don't agree with this practice. They make enough off the cost of the menu items! Extremely expensive"
},
"Customer 78": {
"Food": "The cuts of meat were superb",
"Service": "Great traditional service, waited portion the dishes so we could share, Excellent wine list and expert sommelier",
"Other": "One of the finest steakhouses I've been to on the West Coast, warm, relaxed atmosphere"
},
"Customer 79": {
"Food": "The food was only so-so. The MG steak tasted tough, like a grass fed beef. We have had tastier steaks at Daniel's.",
"Service": "The service was terrific.",
"Other": "First time at MG in a few years. The bill was >$400 for 4 people. Sorry to be disappointed."
},
"Customer 80": {
"Food": "$90 on a steak",
"Service": "None",
"Other": "Been dining here for over a decade, now there's a 20% charge added to every bill regardless of party size \"to ensure quality service.. 100% is retained by establishment..\" so if you still want to leave your server something you're looking at roughly 50% added to your bill, it's insulting"
},
"Customer 81": {
"Food": "Steak was very good though the crab cake was average.",
"Service": "Service was great. Staff were happy to introduce the menus and wines.",
"Other": "None"
},
"Customer 82": {
"Food": "The food was great",
"Service": "our server was spectacular!",
"Other": "None"
},
"Customer 83": {
"Food": "Excellent steak. I was surprised at being able to taste the difference in differently sourced filets.",
"Service": "Professional and efficient service.",
"Other": "Prices as expected are those of a good steakhouse."
},
"Customer 84": {
"Food": "great meal and fun table side deconstructed apple pie",
"Service": "None",
"Other": "None"
},
"Customer 85": {
"Food": "Amazing steaks.",
"Service": "None",
"Other": "None"
},
"Customer 86": {
"Food": "The food was delicious. They even gave us a complimentary cr\u00e8me br\u00fbl\u00e9e",
"Service": "Our waiter was wonderful",
"Other": "My husband and I went to celebrate our anniversary while we were in town. Highly recommend."
},
"Customer 87": {
"Food": "Food has been consistently fantastic for over 30 years",
"Service": "service has been consistently fantastic for over 30 years. It feels like eating with family due to the large number of long service employees that make us feel special",
"Other": "The Met is at the top of the list of our favorite restaurants. We are moving 4 hours away but will continue to drive over to Seattle several times a year to keep our tradition going"
},
"Customer 88": {
"Food": "beyond satisfied with the food",
"Service": "beyond satisfied with the service",
"Other": "We were celebrating our anniversary there and was our first time going there. It definitely exceeded our expectations. This is definitely a restaurant that we will be going to again."
},
"Customer 89": {
"Food": "None",
"Service": "None",
"Other": "The best restaurant in Seattle"
},
"Customer 90": {
"Food": "food, drinks",
"Service": "Excellent service",
"Other": "atmosphere. Perfection!"
},
"Customer 91": {
"Food": "Cooper River king salmon so it was a really treat!",
"Service": "None",
"Other": "Always a pleasure to return to this fine dining establishment. Definitely a must visit when you are in Seattle!"
},
"Customer 92": {
"Food": "This steak was poor quality. We both ordered 2 Filets, Wagu and prime with tough membranes.",
"Service": "None",
"Other": "Embarrassing for my client."
},
"Customer 93": {
"Food": "Fantastic food",
"Service": "Fantastic service",
"Other": "Beautiful place! We definitely plan to go back next time we are in Seattle."
},
"Customer 94": {
"Food": "The food was outstanding and delivered quickly",
"Service": "Everyone working there was very friendly and helpful. The Valet parking made it very easy to access",
"Other": "The atmosphere is elegant and fun at the same time. Highly recommend!"
},
"Customer 95": {
"Food": "Food was not at all up to par",
"Service": "None",
"Other": "was way overpriced"
},
"Customer 96": {
"Food": "Amazing meal",
"Service": "Amazing service",
"Other": "Amazing experience"
},
"Customer 97": {
"Food": "We split the Chateaubriand for 2 with 3 of us and a couple of extra sides. Creamed spinach, potato pancakes and the bacon. The sommelier selected a perfect merlot blend (Northstar)",
"Service": "Great service. Service was impeccable. The sommelier selected a perfect merlot blend",
"Other": "Great atmosphere. We were not totally hungry as we had our last night and were heading to the airport so had to try as many places as possible. But needed to experience the Metropolitan. Not at all disappointed."
},
"Customer 98": {
"Food": "Best steak dinner I have had in a long time... incredible food",
"Service": "to the wait staff",
"Other": "From the ambiance... it will be a night we will not forget for a long time"
},
"Customer 99": {
"Food": "None",
"Service": "None",
"Other": "$30 corkage and $80 steaks is getting out of hand. Dinner for 4, brought our own wine, shared 2 entrees, 1 dessert for $450\u2026ouch!"
},
"Customer 100": {
"Food": "Food is outstanding. Bananas Froster table side is an event.",
"Service": "Service is perfect.",
"Other": "The Metropolitan Grill is an experience."
},
"Customer 101": {
"Food": "ribeye, 3 sides, oyster appetizers were delicious",
"Service": "hard to get a hold of waiter/staff, only came to pickup or drop off food/drink items, not happy about the service",
"Other": "sat in far off corner, will look for better and more up to date ambience for a more lively time, bill was about $500"
},
"Customer 102": {
"Food": "It was a spectacular meal. We ordered the Japanese Wayuu, super juicy and tasty.",
"Service": "I loved the support from our sommelier in helping me pick out the best wine based on preferred location and notes. Service was excellent from all the staff, I felt at home.",
"Other": "Will keep coming once I visit Seattle again!"
},
"Customer 103": {
"Food": "The steak was the worst steak I've had in a VERY long time. It was so gristly I was able to eat 15% of it. It came out low medium RARE instead of medium. The potato cakes were dry and musty tasting.",
"Service": "The wait staff was phenomenal",
"Other": "This was a highly talked about restaurant. I've had better steaks at Outback Steak house."
},
"Customer 104": {
"Food": "Temperature was cooked great but the steak was not as tender as I would expect and lacked a good outer crust.",
"Service": "Service was excellent",
"Other": "Lovely restaurant with great character."
},
"Customer 105": {
"Food": "Steak is top shelf but sides are average",
"Service": "Great wait staff",
"Other": "old school steak house ambiance. Very high cost on food"
},
"Customer 106": {
"Food": "None",
"Service": "Our server was amazing!",
"Other": "We always love coming here when visiting!"
},
"Customer 107": {
"Food": "great menu selections",
"Service": "Service is always impeccable",
"Other": "My husband and I have been here a few times on dates or with friends. It's always a great experience from start to finish. Classic old steakhouse vibe"
},
"Customer 108": {
"Food": "Crab cakes and ribeye steaks were delicious",
"Service": "The service was excellent",
"Other": "Definitely recommend!"
},
"Customer 109": {
"Food": "Spectacular food per usual!",
"Service": "Service here is always world class! Every staff member we interacted with wished us a happy anniversary, and made us feel welcome and included.",
"Other": "None"
},
"Customer 110": {
"Food": "Crab Cakes were plump & delicious, Calamari was overcooked but tasty, Caesar was fresh and beautiful, Longbone Ribeye was poorly cooked with inedible fat chunks and tasted old, Baked Potatoes were impressive, Asparagus and Creamed Spinach were good, Bananas Foster was large but mediocre without cinnamon or whipped cream",
"Service": "Service was outstanding",
"Other": "Used to be worth the hassle to go to Seattle"
},
"Customer 111": {
"Food": "None",
"Service": "Our sever was fantastic",
"Other": "We had a work wounderful experience"
},
"Customer 112": {
"Food": "None",
"Service": "None",
"Other": "Excellent as it always is"
},
"Customer 113": {
"Food": "The food was good but not exceptional",
"Service": "The waitress herself was wonderful. The wait staff hovered waiting to clear your table once you put your fork down.",
"Other": "The decor was out dated with small old dark green velvet covered booths and very dem lighting. We understand this may be the atmosphere they are trying to present but it could be much nicer at the rate they charge. Your automatically charge $25 gratuity fee than have the gall to add \"if you are feeling generous you can add a tip that will go to the waitress/waiter\" which is just frustrating. We are happy to tip accordingly to the service we receive but the built in gratuity fee on top plus the cost a person pays for a meal in our opinion is not worth the expense."
},
"Customer 114": {
"Food": "Great steaks",
"Service": "amazing service! They have been around for years which shows you they value continuing to serve the community and their customers.",
"Other": "None"
},
"Customer 115": {
"Food": "Great steaks",
"Service": "They verify vax status",
"Other": "good selection of scotches, which provided peace of mind for me for biz dinner with staff and clients"
},
"Customer 116": {
"Food": "wonderful food",
"Service": "Always the best service",
"Other": "My \"GO TO\" place for special occassions"
},
"Customer 117": {
"Food": "20oz bone-in ribeye dry aged steak was outstanding, crime br\u00fbl\u00e9e",
"Service": "Our waiter was super attentive and helpful",
"Other": "Everything was amazing"
},
"Customer 118": {
"Food": "los platillos son lo m\u00e1ximo en sabor, calidad y porciones",
"Service": "Atenci\u00f3n maravillosa",
"Other": "el lugar es incre\u00edble"
},
"Customer 119": {
"Food": "The most incredible food",
"Service": "amazing staff",
"Other": "One of favorite places to go"
},
"Customer 120": {
"Food": "terrific food",
"Service": "Fantastic waitress",
"Other": "welcoming atmosphere"
},
"Customer 121": {
"Food": "Do not miss the spinach salad, the bananas flamb\u00e9, and the best carrot cake we have ever tasted. Regardless of cut, every piece of steak we have ever tasted is phenomenal.",
"Service": "the service is a slam dunk every time",
"Other": "Metropolitan Grill has been our go to special occasion steakhouse for over 10 years now. We have been to a few other steakhouses, but the Metropolitan Grill has become our favorite. the ambience is a slam dunk every time."
},
"Customer 122": {
"Food": "None",
"Service": "None",
"Other": "Nothing special."
},
"Customer 123": {
"Food": "wagyu only sold in 3 places in the world and the taste was phenomenal",
"Service": "Patrick was very nice and knowledgeable",
"Other": "5/5"
},
"Customer 124": {
"Food": "Food was cold",
"Service": "None",
"Other": "Overpriced. Disappointing visit. Will go to other steakhouses to celebrate in the future."
},
"Customer 125": {
"Food": "One of the most enjoyable meals I've had in a very long time!",
"Service": "None",
"Other": "A truly spectacular experience. A notch above, in price of course but truly in quality as well."
},
"Customer 126": {
"Food": "outstanding meal",
"Service": "Wonderful service",
"Other": "None"
},
"Customer 127": {
"Food": "The ch\u00e2teaubreian for two was very small",
"Service": "a service charge was added to bill",
"Other": "We have always loved going here for anniversary, this year was so different. Very disappointed."
},
"Customer 128": {
"Food": "Our steaks were undercooked twice and our food arrived cold. The steak quality is very good. I wish they aged their steaks a bit longer though. Their soups were excellent, spinach was great",
"Service": "service was very good",
"Other": "They gave us complimentary valet for the food issues which was nice"
},
"Customer 129": {
"Food": "None",
"Service": "their attitude is that they are better than you are, so you're privileged to be dining there. Not really looking for a side of attitude with my steak.",
"Other": "Not that great, especially for the cost. They are an institution"
},
"Customer 130": {
"Food": "great food",
"Service": "great service",
"Other": "A fantastic place to go to for a special occasion!"
},
"Customer 131": {
"Food": "None",
"Service": "None",
"Other": "We have been eating at the Met since the early 1990's. This is the finest steak house we have ever had the pleasure to dine in. This is THE restaurant that we Guage all other restaurants by. Excellent."
},
"Customer 132": {
"Food": "None",
"Service": "The wait staff seated us in a previously-unoccupied section of the restaurant even though there were several other tables nearer to current patrons",
"Other": "I wasn't sure if it was some kind of micro aggression or if something else was going on, but the separateness definitely undermined my enjoyment"
},
"Customer 133": {
"Food": "A must for serious steak lovers!",
"Service": "None",
"Other": "First time here after numerous trips to Seattle....why did I wait so long? Certainly lived up to the reputation."
},
"Customer 134": {
"Food": "Amazing food as always!",
"Service": "None",
"Other": "Love the Met! Can't miss dinning experience every time I visit the Emerald City."
},
"Customer 135": {
"Food": "None",
"Service": "None",
"Other": "We had an extraordinary experience at an extraordinary restaurant. One of the Pacific Northwest's very best."
},
"Customer 136": {
"Food": "Our medium rib eye was dry & well done and our well plus filet was medium-med rare",
"Service": "None",
"Other": "This place is a classic & has been home to many happy occasions. All else was brilliant as to be expected from The Met."
},
"Customer 137": {
"Food": "two medium rare Chateaubriand's came out as medium well, two tasteless and very expensive cuts of meat",
"Service": "The ma\u00eetre de knew very well when he started carving the meat that they were not cooked to order yet he kept on carving rather than send it back to the kitchen, offered dessert on the house as compensation, manager offered free appetizers for next visit",
"Other": "We came because of it's reputation as top steak house, An establishment like this should know way better"
},
"Customer 138": {
"Food": "Excellent food. We had the wedge salad, mashed potatoes, and New York strip.",
"Service": "Excellent service. They made sure we had our food and got done on time",
"Other": "We had a 4:30 reservation and then went to Coldplay concert at 6:00."
},
"Customer 139": {
"Food": "declining food quality",
"Service": "surly hostess",
"Other": "menu changes, coupled with a 20% automatic \"surcharge\" that goes to the house make me question why anyone would still go here. I'll give it another try for nostalgia, if no other reason, but you might find better value elsewhere."
},
"Customer 140": {
"Food": "The soups were excellent. The scallops were heavily breaded and lacked flavor. The crab cakes were a bit better, but still not a lot of flavor in the mix or the accompanying salad. The steak tartare was drowned in sauce and seemed to be hiding a lower quality of meat.",
"Service": "None",
"Other": "It was quite expensive and they add a 20% charge that I'm not sure goes to the staff."
},
"Customer 141": {
"Food": "thoroughly enjoyed her filet, baked potato and salad. Our meals were great as always and I am a fan of the Met Cabernet",
"Service": "Service spot on",
"Other": "None"
},
"Customer 142": {
"Food": "None",
"Service": "None",
"Other": "Not quite back to pre-pandemic fab yet."
},
"Customer 143": {
"Food": "Great meal",
"Service": "even better service",
"Other": "The Met was exceptional as always. Never fails to be a special dining experience."
},
"Customer 144": {
"Food": "Best steak in the land. Banana foster was out of this world.",
"Service": "The staff was an absolute delight from our waiter, server, and everyone who attended to our table.",
"Other": "We could not have enjoyed ourselves more. Super fun and lots of laughs. Thanks again for exceeding our expectations, even though we didn't think that was possible."
},
"Customer 145": {
"Food": "remarkable food",
"Service": "Amazing service",
"Other": "None"
},
"Customer 146": {
"Food": "Great food as always!",
"Service": "None",
"Other": "None"
},
"Customer 147": {
"Food": "Amazing steaks that melt in your mouth. The prawn cocktail was impressive with 4 inch prawns...a very filling starter!",
"Service": "Great service",
"Other": "None"
},
"Customer 148": {
"Food": "One of the best and most flavorful meals I've ever had!!",
"Service": "Great service from a hard working staff!!",
"Other": "None"
},
"Customer 149": {
"Food": "great food and drinks",
"Service": "Knowledgeable and helpful service",
"Other": "The met is always a go to spot when in Seattle. Great spot for any occasion."
},
"Customer 150": {
"Food": "food was incredible",
"Service": "The service was impeccable",
"Other": "the experience overall was fantastic"
},
"Customer 151": {
"Food": "None",
"Service": "Took covid precautions very seriously",
"Other": "added to the enjoyment of our meal"
},
"Customer 152": {
"Food": "the steaks were extremely flavorful and very tender, and the Mac and cheese was incredible",
"Service": "The waiter was exceptionally friendly and knowledgeable, and had many recommendations",
"Other": "Overall, an excellent experience and we will be back for sure"
},
"Customer 153": {
"Food": "The food was excellent",
"Service": "The service was outstanding. staff provided their customary professional and attentive service",
"Other": "The ambiance has changed with the covid-19 limitations. Safety protocols were in place to provide a feeling of security. The restaurant is now adding a 20 percent service charge to the bill"
},
"Customer 154": {
"Food": "Food was made perfectly",
"Service": "service was amazing! Everything came out within a reasonable time",
"Other": "presentation was lovely. Made our anniversary special!"
},
"Customer 155": {
"Food": "Highest quality food, tremendous meal",
"Service": "Highest quality service",
"Other": "My favorite steak house"
},
"Customer 156": {
"Food": "Food was the BEST!",
"Service": "service was the BEST!",
"Other": "ambiance was the BEST!"
},
"Customer 157": {
"Food": "wonderful food. Everything was exceptional.",
"Service": "Wonderful service",
"Other": "It was great getting back to eating here."
},
"Customer 158": {
"Food": "food quality",
"Service": "service",
"Other": "stylish, consistent, great for business dinners"
},
"Customer 159": {
"Food": "Superb food",
"Service": "seamless service during COVID",
"Other": "These guys are a model for dining in during the pandemic. Be prepared for a much more sedate ambiance than before with widely spaced tables, and many less people. And those special dishes that served table-side are no longer. The menu is more limited, too. The joint still remains an absolute joy."
},
"Customer 160": {
"Food": "None",
"Service": "Excellent service by Bruno",
"Other": "Establishment takes Covid19 precautions very seriously. No worries at The Met. Be aware of the 20% surcharge added to bill."
},
"Customer 161": {
"Food": "Amazing food",
"Service": "great service",
"Other": "they are providing a great social distancing service with skipping booths, extra height to their booths, and staggered entrance"
},
"Customer 162": {
"Food": "None",
"Service": "No tableside service shows to watch",
"Other": "With the Covid stuff going on its sad to see the restaurant at half capacity"
},
"Customer 163": {
"Food": "Excellent food",
"Service": "Excellent service",
"Other": "None"
},
"Customer 164": {
"Food": "None",
"Service": "Attentive staff that did not disrupt a meal",
"Other": "among COVID-19 isolation buddies"
},
"Customer 165": {
"Food": "None",
"Service": "Awesome personal staff, all very welcoming even before we got seated",
"Other": "Will always come back"
},
"Customer 166": {
"Food": "The trio was awesome, but the prime was amazing.",
"Service": "None",
"Other": "None"
},
"Customer 167": {
"Food": "the Met delivers on some of the best steaks you can find",
"Service": "Service was top notch, with a few changes in light of Covid. For example, we refilled our wine glasses ourselves, menus are paper based",
"Other": "making us feeling safe while dining, bar sitting is not available, you can get the extended version using a convenient QR code"
},
"Customer 168": {
"Food": "food the best in Seattle",
"Service": "Service and staff the best in Seattle",
"Other": "So great, celebrating my husband's Birthday. Never disappointed."
},
"Customer 169": {
"Food": "Best Waygu filet, Best fried Brussels sprouts. We also enjoyed massive baked potatoes and Bananas Foster for dessert. Best Manhattan",
"Service": "Our res was for 4p and we were promptly seated. gave us excellent service",
"Other": "The Met has a great 2 for 1 promo on their website. We've eaten at many high-end restaurants and The Met always puts a smile on our faces! Definitely worth a try if you haven't already. We'll be back for sure!"
},
"Customer 170": {
"Food": "food, cocktails & wine",
"Service": "impeccable service, So happy they were able to accommodate us and make my son's birthday a truly special occasion!",
"Other": "High-end atmosphere, without being stuffy or uncomfortable"
},
"Customer 171": {
"Food": "enjoyed our meal immensely",
"Service": "None",
"Other": "took advantage of the special buy one get one entree the Met was offering due to slow business with the virus. will be back again soon!"
},
"Customer 172": {
"Food": "None",
"Service": "None",
"Other": "By far the traditional throwback steak restaurant."
},
"Customer 173": {
"Food": "the food was great",
"Service": "the service was excellent",
"Other": "None"
},
"Customer 174": {
"Food": "None",
"Service": "The service was incredible!",
"Other": "None"
},
"Customer 175": {
"Food": "None",
"Service": "None",
"Other": "One of our best dining experiences."
},
"Customer 176": {
"Food": "None",
"Service": "Our server was AMAZING!!",
"Other": "we had a great evening"
},
"Customer 177": {
"Food": "The steaks were phenomenal. The scalioed potatoes are classic dishes and it was though they tried to fancy it up and added jalapenos. The filet was perfectly prepared, seasoned to taste the natural flavors of the beef. Absolutely delicious! The desert menu was basic.",
"Service": "None",
"Other": "at$110 a piece I would hope so. Somethings just need to remain classic. I think I expected more. That is an area that could use a little update."
},
"Customer 178": {
"Food": "Long Bone Rib Eye and Flaming Banana Fosters for desert",
"Service": "Our server is so awesome, we will request him whenever we come back!",
"Other": "What an awesome dinner"
},
"Customer 179": {
"Food": "Their food has always been excellent. The steaks are always cooked at a perfect temperature and the flavors are always spot on.",
"Service": "our waiter and our bus boy were amazing",
"Other": "My wife and I have been coming here for over 20 years every time we visit Seattle. But in this new era of restaurants thinking they can make up wage increases by implementing a service charge the metropolitan grill has won the prize for over compensating. To my surprise when the bill came there was a 20% service charge. Because the service charge wasn't even going to the servers, it was for the company's profit to pay their employees above average benifits and supposedly year end bonus. This will be the last time i dine here."
},
"Customer 180": {
"Food": "None",
"Service": "Service staff are all experienced professionals who make you feel welcome and well taken care of. There was a mix up with our sides originally, but the staff corrected the error in under five minutes. And the restaurant treated us to a complimentary dessert to share for the occasion.",
"Other": "My only gripe is that I do wish there was less confusion regarding the 20% service charge many establishments in the area have put in place to offset an increased minimum wage. Does any of that charge go to the service staff beyond their base compensation- or should I be forking out an additional percentage? It puts a sour note on the tail end of an otherwise lovely evening when you're sitting with a bill wondering whether declining to pay 30 to 40% over your bill is effectively stiffing someone who just spent an hour and a half waiting on your needs. This isn't a burden diners should have to bear. I wish area restaurants would just raise their menu prices. I don't know why, but it feels like less of a conundrum that way."
},
"Customer 181": {
"Food": "Ohmi steak medium rare was worth every penny. Like buttah. The coconut white chocolate cake was awesome. Scallops good. Calamari meh.",
"Service": "Service was great from the doorman to hostess to server.",
"Other": "Felt like Chicago."
},
"Customer 182": {
"Food": "great food",
"Service": "None",
"Other": "Great experience"
},
"Customer 183": {
"Food": "None",
"Service": "None",
"Other": "Definitely the place to take your lady for a fancy night out."
},
"Customer 184": {
"Food": "Great food",
"Service": "Great service",
"Other": "Will definitely be back!"
},
"Customer 185": {
"Food": "Food is always good",
"Service": "Server forgot many things. His service was just meh. Usually better service.",
"Other": "Dinner took almost 3 hours and we had our kid with us."
},
"Customer 186": {
"Food": "best steakhouse",
"Service": "best service",
"Other": "(and I have literally been to 100+ good ones)"
},
"Customer 187": {
"Food": "Steak was done to perfection",
"Service": "the staff was very comforting and attentive",
"Other": "Although we were delayed in getting seated"
},
"Customer 188": {
"Food": "Food quality was mediocre at best",
"Service": "None",
"Other": "Not happy about the 15% service charge either"
},
"Customer 189": {
"Food": "some of the best steak I have eaten. The wine selection was vast and the table side chateaubriand was fantastic! For dessert, the burnt cream was a must get.",
"Service": "The staff were very friendly and attentive to detail. I didn't have to ask for anything because they staff were always on top of it. The best service I've received in a while.",
"Other": "The best steakhouse in Seattle"
},
"Customer 190": {
"Food": "Menu is perfect, something for everyone",
"Service": "Service was awesome, waiter was very accommodating",
"Other": "Had dinner with my wife. Will be back definitely!"
},
"Customer 191": {
"Food": "The food was of course delicious",
"Service": "The service was amazing as always! Thank you for your great customer service team!!",
"Other": "We had a delightful evening"
},
"Customer 192": {
"Food": "None",
"Service": "None",
"Other": "Valentines and birthday dinner"
},
"Customer 193": {
"Food": "Dining was great",
"Service": "None",
"Other": "Place could use a good cleaning. Them mini curtain dividers at seating area needs a thorough dusting and cleaning."
},
"Customer 194": {
"Food": "None",
"Service": "None",
"Other": "Incredible all the way around!"
},
"Customer 195": {
"Food": "Dinner was cooked to perfection",
"Service": "Amazing service, everyone was just so kind and friendly",
"Other": "I just love the ambience. It truly is a lovely dining experience"
},
"Customer 196": {
"Food": "He ordered bone in rib eye which was excellent. Delmonico was the worst piece of meat, tough with big fat deposits, no marbling, and overcooked (asked for rare to medium rare, served medium well done).",
"Service": "None",
"Other": "Still had a great night and hope next experience is better."
},
"Customer 197": {
"Food": "Worst prime rib I ever had",
"Service": "They messed up half of the orders. The server was not the tip",
"Other": "The bill was 800 for six of us and nobody drank booze or wine. The bill included a 20 percent service charge. Stay away from this place at all cost. I know this is a historic restaurant, if the individuals responsible for making this place historic could see it now they would be incredibly disappointed."
},
"Customer 198": {
"Food": "Food exceptional",
"Service": "service exceptional",
"Other": "Not that great an atmosphere. Booths are so low feels like you are reaching for the table"
},
"Customer 199": {
"Food": "Steaks were just ok...definitely nothing to rave about. Lobster macaroni and cheese was over cooked.",
"Service": "None",
"Other": "Would choose Ruth Chris any day over this forgettable meal!"
},
"Customer 200": {
"Food": "Great food. Only nit is that meat cook scale was a bit different than our normal/what we're used to.",
"Service": "Perhaps the best service ever.",
"Other": "Early v-day with girlfriend."