tower-mcp 0.10.1

Tower-native Model Context Protocol (MCP) implementation
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
//! Prompt definition and builder API
//!
//! Provides ergonomic ways to define MCP prompts:
//!
//! 1. **Builder pattern** - Fluent API for defining prompts
//! 2. **Trait-based** - Implement `McpPrompt` for full control
//! 3. **Per-prompt middleware** - Apply tower middleware layers to individual prompts
//!
//! # Per-Prompt Middleware
//!
//! The `.layer()` method on `PromptBuilder` (after `.handler()`) allows applying
//! tower middleware to a single prompt. This is useful for prompt-specific concerns
//! like timeouts, rate limiting, or caching.
//!
//! ```rust
//! use std::collections::HashMap;
//! use std::time::Duration;
//! use tower::timeout::TimeoutLayer;
//! use tower_mcp::prompt::PromptBuilder;
//! use tower_mcp::protocol::{GetPromptResult, PromptMessage, PromptRole, Content};
//!
//! let prompt = PromptBuilder::new("slow_prompt")
//!     .description("A prompt that might take a while")
//!     .handler(|args: HashMap<String, String>| async move {
//!         // Slow prompt generation logic...
//!         Ok(GetPromptResult {
//!             description: Some("Generated prompt".to_string()),
//!             messages: vec![PromptMessage {
//!                 role: PromptRole::User,
//!                 content: Content::Text {
//!                     text: "Hello!".to_string(),
//!                     annotations: None,
//!                     meta: None,
//!                 },
//!                 meta: None,
//!             }],
//!             meta: None,
//!         })
//!     })
//!     .layer(TimeoutLayer::new(Duration::from_secs(5)));
//!
//! assert_eq!(prompt.name, "slow_prompt");
//! ```

use std::collections::HashMap;
use std::convert::Infallible;
use std::fmt;
use std::future::Future;
use std::pin::Pin;
use std::sync::Arc;
use std::task::{Context, Poll};

use pin_project_lite::pin_project;

use tokio::sync::Mutex;
use tower::util::BoxCloneService;
use tower::{Layer, ServiceExt};
use tower_service::Service;

use crate::context::RequestContext;
use crate::error::{Error, Result};
use crate::protocol::{
    Content, GetPromptResult, PromptArgument, PromptDefinition, PromptMessage, PromptRole,
    RequestId, ToolIcon,
};

/// A boxed future for prompt handlers
pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;

// =============================================================================
// Per-Prompt Middleware Types
// =============================================================================

/// Request type for prompt middleware.
///
/// Contains the request context and prompt arguments, allowing middleware
/// to access and modify the request before it reaches the prompt handler.
#[derive(Debug, Clone)]
pub struct PromptRequest {
    /// The request context with progress reporting, cancellation, etc.
    pub context: RequestContext,
    /// The prompt arguments (name -> value)
    pub arguments: HashMap<String, String>,
}

impl PromptRequest {
    /// Create a new prompt request with the given context and arguments.
    pub fn new(context: RequestContext, arguments: HashMap<String, String>) -> Self {
        Self { context, arguments }
    }

    /// Create a prompt request with a default context (for testing or simple use cases).
    pub fn with_arguments(arguments: HashMap<String, String>) -> Self {
        Self {
            context: RequestContext::new(RequestId::Number(0)),
            arguments,
        }
    }
}

/// A boxed, cloneable prompt service with `Error = Infallible`.
///
/// This is the service type used internally after applying middleware layers.
/// It wraps any `Service<PromptRequest>` implementation so that the prompt
/// handler can consume it without knowing the concrete middleware stack.
pub type BoxPromptService = BoxCloneService<PromptRequest, GetPromptResult, Infallible>;

/// A service wrapper that catches errors from middleware and converts them
/// into prompt errors, maintaining the `Error = Infallible` contract.
///
/// When a middleware layer (e.g., `TimeoutLayer`) produces an error, this
/// wrapper converts it into a prompt error. This allows error information to
/// flow through the normal response path rather than requiring special
/// error handling.
#[doc(hidden)]
pub struct PromptCatchError<S> {
    inner: S,
}

impl<S> PromptCatchError<S> {
    /// Create a new `PromptCatchError` wrapping the given service.
    pub fn new(inner: S) -> Self {
        Self { inner }
    }
}

impl<S: Clone> Clone for PromptCatchError<S> {
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
        }
    }
}

impl<S: fmt::Debug> fmt::Debug for PromptCatchError<S> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("PromptCatchError")
            .field("inner", &self.inner)
            .finish()
    }
}

pin_project! {
    /// Future for [`PromptCatchError`].
    #[doc(hidden)]
    pub struct PromptCatchErrorFuture<F> {
        #[pin]
        inner: F,
    }
}

impl<F, E> Future for PromptCatchErrorFuture<F>
where
    F: Future<Output = std::result::Result<GetPromptResult, E>>,
    E: fmt::Display,
{
    type Output = std::result::Result<GetPromptResult, Infallible>;

    fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        match self.project().inner.poll(cx) {
            Poll::Pending => Poll::Pending,
            Poll::Ready(Ok(response)) => Poll::Ready(Ok(response)),
            Poll::Ready(Err(err)) => Poll::Ready(Ok(GetPromptResult {
                description: Some(format!("Prompt error: {}", err)),
                messages: vec![PromptMessage {
                    role: PromptRole::Assistant,
                    content: Content::Text {
                        text: format!("Error generating prompt: {}", err),
                        annotations: None,
                        meta: None,
                    },
                    meta: None,
                }],
                meta: None,
            })),
        }
    }
}

impl<S> Service<PromptRequest> for PromptCatchError<S>
where
    S: Service<PromptRequest, Response = GetPromptResult> + Clone + Send + 'static,
    S::Error: fmt::Display + Send,
    S::Future: Send,
{
    type Response = GetPromptResult;
    type Error = Infallible;
    type Future = PromptCatchErrorFuture<S::Future>;

    fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<std::result::Result<(), Self::Error>> {
        self.inner.poll_ready(cx).map_err(|_| unreachable!())
    }

    fn call(&mut self, req: PromptRequest) -> Self::Future {
        PromptCatchErrorFuture {
            inner: self.inner.call(req),
        }
    }
}

/// Adapts a prompt handler function into a `Service<PromptRequest>`.
///
/// This allows the handler to be wrapped with tower middleware layers.
/// Used by `.layer()` on `PromptBuilderWithHandler`.
#[doc(hidden)]
pub struct PromptHandlerService<F> {
    handler: F,
}

impl<F> Clone for PromptHandlerService<F>
where
    F: Clone,
{
    fn clone(&self) -> Self {
        Self {
            handler: self.handler.clone(),
        }
    }
}

impl<F, Fut> Service<PromptRequest> for PromptHandlerService<F>
where
    F: Fn(HashMap<String, String>) -> Fut + Clone + Send + Sync + 'static,
    Fut: Future<Output = Result<GetPromptResult>> + Send + 'static,
{
    type Response = GetPromptResult;
    type Error = Error;
    type Future = Pin<Box<dyn Future<Output = std::result::Result<GetPromptResult, Error>> + Send>>;

    fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<std::result::Result<(), Self::Error>> {
        Poll::Ready(Ok(()))
    }

    fn call(&mut self, req: PromptRequest) -> Self::Future {
        let handler = self.handler.clone();
        Box::pin(async move { handler(req.arguments).await })
    }
}

/// Adapts a context-aware prompt handler function into a `Service<PromptRequest>`.
///
/// Used by `.layer()` on `PromptBuilderWithContextHandler`.
#[doc(hidden)]
pub struct PromptContextHandlerService<F> {
    handler: F,
}

impl<F> Clone for PromptContextHandlerService<F>
where
    F: Clone,
{
    fn clone(&self) -> Self {
        Self {
            handler: self.handler.clone(),
        }
    }
}

impl<F, Fut> Service<PromptRequest> for PromptContextHandlerService<F>
where
    F: Fn(RequestContext, HashMap<String, String>) -> Fut + Clone + Send + Sync + 'static,
    Fut: Future<Output = Result<GetPromptResult>> + Send + 'static,
{
    type Response = GetPromptResult;
    type Error = Error;
    type Future = Pin<Box<dyn Future<Output = std::result::Result<GetPromptResult, Error>> + Send>>;

    fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<std::result::Result<(), Self::Error>> {
        Poll::Ready(Ok(()))
    }

    fn call(&mut self, req: PromptRequest) -> Self::Future {
        let handler = self.handler.clone();
        Box::pin(async move { handler(req.context, req.arguments).await })
    }
}

/// Prompt handler trait - the core abstraction for prompt generation
pub trait PromptHandler: Send + Sync {
    /// Get the prompt with the given arguments
    fn get(&self, arguments: HashMap<String, String>) -> BoxFuture<'_, Result<GetPromptResult>>;

    /// Get the prompt with request context
    ///
    /// The default implementation ignores the context and calls `get`.
    /// Override this to receive context for progress reporting, cancellation, etc.
    fn get_with_context(
        &self,
        _ctx: RequestContext,
        arguments: HashMap<String, String>,
    ) -> BoxFuture<'_, Result<GetPromptResult>> {
        self.get(arguments)
    }

    /// Returns true if this handler uses context (for optimization)
    fn uses_context(&self) -> bool {
        false
    }
}

/// A complete prompt definition with handler
pub struct Prompt {
    /// The prompt name (must be unique within the router).
    pub name: String,
    /// Optional human-readable title.
    pub title: Option<String>,
    /// Optional description of the prompt.
    pub description: Option<String>,
    /// Optional icons for the prompt.
    pub icons: Option<Vec<ToolIcon>>,
    /// The arguments this prompt accepts.
    pub arguments: Vec<PromptArgument>,
    handler: Arc<dyn PromptHandler>,
}

impl Clone for Prompt {
    fn clone(&self) -> Self {
        Self {
            name: self.name.clone(),
            title: self.title.clone(),
            description: self.description.clone(),
            icons: self.icons.clone(),
            arguments: self.arguments.clone(),
            handler: self.handler.clone(),
        }
    }
}

impl std::fmt::Debug for Prompt {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Prompt")
            .field("name", &self.name)
            .field("title", &self.title)
            .field("description", &self.description)
            .field("icons", &self.icons)
            .field("arguments", &self.arguments)
            .finish_non_exhaustive()
    }
}

impl Prompt {
    /// Create a new prompt builder
    pub fn builder(name: impl Into<String>) -> PromptBuilder {
        PromptBuilder::new(name)
    }

    /// Get the prompt definition for prompts/list
    pub fn definition(&self) -> PromptDefinition {
        PromptDefinition {
            name: self.name.clone(),
            title: self.title.clone(),
            description: self.description.clone(),
            icons: self.icons.clone(),
            arguments: self.arguments.clone(),
            meta: None,
        }
    }

    /// Get the prompt with arguments
    pub fn get(
        &self,
        arguments: HashMap<String, String>,
    ) -> BoxFuture<'_, Result<GetPromptResult>> {
        self.handler.get(arguments)
    }

    /// Get the prompt with request context
    ///
    /// Use this when you have a RequestContext available for progress/cancellation.
    pub fn get_with_context(
        &self,
        ctx: RequestContext,
        arguments: HashMap<String, String>,
    ) -> BoxFuture<'_, Result<GetPromptResult>> {
        self.handler.get_with_context(ctx, arguments)
    }

    /// Returns true if this prompt uses context
    pub fn uses_context(&self) -> bool {
        self.handler.uses_context()
    }
}

// =============================================================================
// Builder API
// =============================================================================

/// Builder for creating prompts with a fluent API
///
/// # Example
///
/// ```rust
/// use tower_mcp::prompt::PromptBuilder;
/// use tower_mcp::protocol::{GetPromptResult, PromptMessage, PromptRole, Content};
///
/// let prompt = PromptBuilder::new("greet")
///     .description("Generate a greeting")
///     .required_arg("name", "The name to greet")
///     .handler(|args| async move {
///         let name = args.get("name").map(|s| s.as_str()).unwrap_or("World");
///         Ok(GetPromptResult {
///             description: Some("A greeting prompt".to_string()),
///             messages: vec![PromptMessage {
///                 role: PromptRole::User,
///                 content: Content::Text {
///                     text: format!("Please greet {}", name),
///                     annotations: None,
///                     meta: None,
///                 },
///                 meta: None,
///             }],
///             meta: None,
///         })
///     })
///     .build();
///
/// assert_eq!(prompt.name, "greet");
/// ```
pub struct PromptBuilder {
    name: String,
    title: Option<String>,
    description: Option<String>,
    icons: Option<Vec<ToolIcon>>,
    arguments: Vec<PromptArgument>,
}

impl PromptBuilder {
    /// Create a new prompt builder with the given name.
    pub fn new(name: impl Into<String>) -> Self {
        Self {
            name: name.into(),
            title: None,
            description: None,
            icons: None,
            arguments: Vec::new(),
        }
    }

    /// Set a human-readable title for the prompt
    pub fn title(mut self, title: impl Into<String>) -> Self {
        self.title = Some(title.into());
        self
    }

    /// Set the prompt description
    pub fn description(mut self, description: impl Into<String>) -> Self {
        self.description = Some(description.into());
        self
    }

    /// Add an icon for the prompt
    pub fn icon(mut self, src: impl Into<String>) -> Self {
        self.icons.get_or_insert_with(Vec::new).push(ToolIcon {
            src: src.into(),
            mime_type: None,
            sizes: None,
            theme: None,
        });
        self
    }

    /// Add an icon with metadata
    pub fn icon_with_meta(
        mut self,
        src: impl Into<String>,
        mime_type: Option<String>,
        sizes: Option<Vec<String>>,
    ) -> Self {
        self.icons.get_or_insert_with(Vec::new).push(ToolIcon {
            src: src.into(),
            mime_type,
            sizes,
            theme: None,
        });
        self
    }

    /// Add a required argument
    pub fn required_arg(mut self, name: impl Into<String>, description: impl Into<String>) -> Self {
        self.arguments.push(PromptArgument {
            name: name.into(),
            description: Some(description.into()),
            required: true,
        });
        self
    }

    /// Add an optional argument
    pub fn optional_arg(mut self, name: impl Into<String>, description: impl Into<String>) -> Self {
        self.arguments.push(PromptArgument {
            name: name.into(),
            description: Some(description.into()),
            required: false,
        });
        self
    }

    /// Add an argument with full control
    pub fn argument(mut self, arg: PromptArgument) -> Self {
        self.arguments.push(arg);
        self
    }

    /// Set the handler function for getting the prompt.
    ///
    /// Returns a `PromptBuilderWithHandler` which can be finalized with `.build()`
    /// or have middleware applied with `.layer()`.
    ///
    /// # Sharing State
    ///
    /// Capture an [`Arc`] in the closure to share state across handler
    /// invocations or with other parts of your application:
    ///
    /// ```rust
    /// use std::collections::HashMap;
    /// use std::sync::Arc;
    /// use tokio::sync::RwLock;
    /// use tower_mcp::prompt::PromptBuilder;
    /// use tower_mcp::protocol::{GetPromptResult, PromptMessage, PromptRole, Content};
    ///
    /// let templates = Arc::new(RwLock::new(HashMap::from([
    ///     ("greeting".to_string(), "Hello, {name}!".to_string()),
    /// ])));
    ///
    /// let tpl = Arc::clone(&templates);
    /// let prompt = PromptBuilder::new("greet")
    ///     .description("Greet a user by name")
    ///     .required_arg("name", "The user's name")
    ///     .handler(move |args: HashMap<String, String>| {
    ///         let tpl = Arc::clone(&tpl);
    ///         async move {
    ///             let templates = tpl.read().await;
    ///             let greeting = templates.get("greeting").unwrap();
    ///             let name = args.get("name").unwrap();
    ///             let text = greeting.replace("{name}", name);
    ///             Ok(GetPromptResult {
    ///                 description: Some("A greeting".to_string()),
    ///                 messages: vec![PromptMessage {
    ///                     role: PromptRole::User,
    ///                     content: Content::text(text),
    ///                     meta: None,
    ///                 }],
    ///                 meta: None,
    ///             })
    ///         }
    ///     })
    ///     .build();
    /// ```
    ///
    /// [`Arc`]: std::sync::Arc
    pub fn handler<F, Fut>(self, handler: F) -> PromptBuilderWithHandler<F>
    where
        F: Fn(HashMap<String, String>) -> Fut + Send + Sync + Clone + 'static,
        Fut: Future<Output = Result<GetPromptResult>> + Send + 'static,
    {
        PromptBuilderWithHandler {
            name: self.name,
            title: self.title,
            description: self.description,
            icons: self.icons,
            arguments: self.arguments,
            handler,
        }
    }

    /// Set a context-aware handler function for getting the prompt
    ///
    /// The handler receives a `RequestContext` for progress reporting and
    /// cancellation checking, along with the prompt arguments.
    pub fn handler_with_context<F, Fut>(self, handler: F) -> PromptBuilderWithContextHandler<F>
    where
        F: Fn(RequestContext, HashMap<String, String>) -> Fut + Send + Sync + Clone + 'static,
        Fut: Future<Output = Result<GetPromptResult>> + Send + 'static,
    {
        PromptBuilderWithContextHandler {
            name: self.name,
            title: self.title,
            description: self.description,
            icons: self.icons,
            arguments: self.arguments,
            handler,
        }
    }

    /// Create a static prompt (no arguments needed)
    pub fn static_prompt(self, messages: Vec<PromptMessage>) -> Prompt {
        let description = self.description.clone();
        self.handler(move |_| {
            let messages = messages.clone();
            let description = description.clone();
            async move {
                Ok(GetPromptResult {
                    description,
                    messages,
                    meta: None,
                })
            }
        })
        .build()
    }

    /// Create a simple text prompt with a user message
    pub fn user_message(self, text: impl Into<String>) -> Prompt {
        let text = text.into();
        self.static_prompt(vec![PromptMessage {
            role: PromptRole::User,
            content: Content::Text {
                text,
                annotations: None,
                meta: None,
            },
            meta: None,
        }])
    }

    /// Finalize the builder into a Prompt
    ///
    /// This is an alias for `handler(...).build()` for when you want to
    /// explicitly mark the build step.
    pub fn build<F, Fut>(self, handler: F) -> Prompt
    where
        F: Fn(HashMap<String, String>) -> Fut + Send + Sync + Clone + 'static,
        Fut: Future<Output = Result<GetPromptResult>> + Send + 'static,
    {
        self.handler(handler).build()
    }
}

/// Builder state after handler is specified
///
/// This allows either calling `.build()` to create the prompt directly,
/// or `.layer()` to apply middleware before building.
#[doc(hidden)]
pub struct PromptBuilderWithHandler<F> {
    name: String,
    title: Option<String>,
    description: Option<String>,
    icons: Option<Vec<ToolIcon>>,
    arguments: Vec<PromptArgument>,
    handler: F,
}

impl<F, Fut> PromptBuilderWithHandler<F>
where
    F: Fn(HashMap<String, String>) -> Fut + Send + Sync + Clone + 'static,
    Fut: Future<Output = Result<GetPromptResult>> + Send + 'static,
{
    /// Build the prompt without any middleware
    pub fn build(self) -> Prompt {
        Prompt {
            name: self.name,
            title: self.title,
            description: self.description,
            icons: self.icons,
            arguments: self.arguments,
            handler: Arc::new(FnHandler {
                handler: self.handler,
            }),
        }
    }

    /// Apply a tower middleware layer to this prompt
    ///
    /// The layer wraps the prompt handler, allowing middleware like timeouts,
    /// rate limiting, or retries to be applied to this specific prompt.
    ///
    /// # Example
    ///
    /// ```rust
    /// use std::collections::HashMap;
    /// use std::time::Duration;
    /// use tower::timeout::TimeoutLayer;
    /// use tower_mcp::prompt::PromptBuilder;
    /// use tower_mcp::protocol::{GetPromptResult, PromptMessage, PromptRole, Content};
    ///
    /// let prompt = PromptBuilder::new("slow_prompt")
    ///     .description("A prompt that might take a while")
    ///     .handler(|_args: HashMap<String, String>| async move {
    ///         Ok(GetPromptResult {
    ///             description: Some("Generated prompt".to_string()),
    ///             messages: vec![PromptMessage {
    ///                 role: PromptRole::User,
    ///                 content: Content::Text {
    ///                     text: "Hello!".to_string(),
    ///                     annotations: None,
    ///                     meta: None,
    ///                 },
    ///                 meta: None,
    ///             }],
    ///             meta: None,
    ///         })
    ///     })
    ///     .layer(TimeoutLayer::new(Duration::from_secs(5)));
    /// ```
    pub fn layer<L>(self, layer: L) -> Prompt
    where
        L: Layer<PromptHandlerService<F>> + Send + Sync + 'static,
        L::Service: Service<PromptRequest, Response = GetPromptResult> + Clone + Send + 'static,
        <L::Service as Service<PromptRequest>>::Error: fmt::Display + Send,
        <L::Service as Service<PromptRequest>>::Future: Send,
    {
        let service = PromptHandlerService {
            handler: self.handler,
        };
        let wrapped = layer.layer(service);
        let boxed = BoxCloneService::new(PromptCatchError::new(wrapped));

        Prompt {
            name: self.name,
            title: self.title,
            description: self.description,
            icons: self.icons,
            arguments: self.arguments,
            handler: Arc::new(ServiceHandler {
                service: Mutex::new(boxed),
            }),
        }
    }
}

/// Builder state after context-aware handler is specified
#[doc(hidden)]
pub struct PromptBuilderWithContextHandler<F> {
    name: String,
    title: Option<String>,
    description: Option<String>,
    icons: Option<Vec<ToolIcon>>,
    arguments: Vec<PromptArgument>,
    handler: F,
}

impl<F, Fut> PromptBuilderWithContextHandler<F>
where
    F: Fn(RequestContext, HashMap<String, String>) -> Fut + Send + Sync + Clone + 'static,
    Fut: Future<Output = Result<GetPromptResult>> + Send + 'static,
{
    /// Build the prompt without any middleware
    pub fn build(self) -> Prompt {
        Prompt {
            name: self.name,
            title: self.title,
            description: self.description,
            icons: self.icons,
            arguments: self.arguments,
            handler: Arc::new(ContextAwareHandler {
                handler: self.handler,
            }),
        }
    }

    /// Apply a tower middleware layer to this prompt
    pub fn layer<L>(self, layer: L) -> Prompt
    where
        L: Layer<PromptContextHandlerService<F>> + Send + Sync + 'static,
        L::Service: Service<PromptRequest, Response = GetPromptResult> + Clone + Send + 'static,
        <L::Service as Service<PromptRequest>>::Error: fmt::Display + Send,
        <L::Service as Service<PromptRequest>>::Future: Send,
    {
        let service = PromptContextHandlerService {
            handler: self.handler,
        };
        let wrapped = layer.layer(service);
        let boxed = BoxCloneService::new(PromptCatchError::new(wrapped));

        Prompt {
            name: self.name,
            title: self.title,
            description: self.description,
            icons: self.icons,
            arguments: self.arguments,
            handler: Arc::new(ServiceContextHandler {
                service: Mutex::new(boxed),
            }),
        }
    }
}

// =============================================================================
// Handler implementations
// =============================================================================

/// Handler wrapping a function
struct FnHandler<F> {
    handler: F,
}

impl<F, Fut> PromptHandler for FnHandler<F>
where
    F: Fn(HashMap<String, String>) -> Fut + Send + Sync + 'static,
    Fut: Future<Output = Result<GetPromptResult>> + Send + 'static,
{
    fn get(&self, arguments: HashMap<String, String>) -> BoxFuture<'_, Result<GetPromptResult>> {
        Box::pin((self.handler)(arguments))
    }
}

/// Handler that receives request context
struct ContextAwareHandler<F> {
    handler: F,
}

impl<F, Fut> PromptHandler for ContextAwareHandler<F>
where
    F: Fn(RequestContext, HashMap<String, String>) -> Fut + Send + Sync + 'static,
    Fut: Future<Output = Result<GetPromptResult>> + Send + 'static,
{
    fn get(&self, arguments: HashMap<String, String>) -> BoxFuture<'_, Result<GetPromptResult>> {
        // When called without context, create a dummy context
        let ctx = RequestContext::new(RequestId::Number(0));
        self.get_with_context(ctx, arguments)
    }

    fn get_with_context(
        &self,
        ctx: RequestContext,
        arguments: HashMap<String, String>,
    ) -> BoxFuture<'_, Result<GetPromptResult>> {
        Box::pin((self.handler)(ctx, arguments))
    }

    fn uses_context(&self) -> bool {
        true
    }
}

/// Handler wrapping a boxed service (used when middleware is applied)
///
/// Uses a Mutex to make the BoxCloneService (which is Send but not Sync) safe
/// for use in a Sync context. Since we clone the service before each call,
/// the lock is only held briefly during the clone.
struct ServiceHandler {
    service: Mutex<BoxPromptService>,
}

impl PromptHandler for ServiceHandler {
    fn get(&self, arguments: HashMap<String, String>) -> BoxFuture<'_, Result<GetPromptResult>> {
        Box::pin(async move {
            let req = PromptRequest::with_arguments(arguments);
            let mut service = self.service.lock().await.clone();
            match service.ready().await {
                Ok(svc) => svc.call(req).await.map_err(|e| match e {}),
                Err(e) => match e {},
            }
        })
    }

    fn get_with_context(
        &self,
        ctx: RequestContext,
        arguments: HashMap<String, String>,
    ) -> BoxFuture<'_, Result<GetPromptResult>> {
        Box::pin(async move {
            let req = PromptRequest::new(ctx, arguments);
            let mut service = self.service.lock().await.clone();
            match service.ready().await {
                Ok(svc) => svc.call(req).await.map_err(|e| match e {}),
                Err(e) => match e {},
            }
        })
    }
}

/// Handler wrapping a boxed service for context-aware prompts
struct ServiceContextHandler {
    service: Mutex<BoxPromptService>,
}

impl PromptHandler for ServiceContextHandler {
    fn get(&self, arguments: HashMap<String, String>) -> BoxFuture<'_, Result<GetPromptResult>> {
        let ctx = RequestContext::new(RequestId::Number(0));
        self.get_with_context(ctx, arguments)
    }

    fn get_with_context(
        &self,
        ctx: RequestContext,
        arguments: HashMap<String, String>,
    ) -> BoxFuture<'_, Result<GetPromptResult>> {
        Box::pin(async move {
            let req = PromptRequest::new(ctx, arguments);
            let mut service = self.service.lock().await.clone();
            match service.ready().await {
                Ok(svc) => svc.call(req).await.map_err(|e| match e {}),
                Err(e) => match e {},
            }
        })
    }

    fn uses_context(&self) -> bool {
        true
    }
}

// =============================================================================
// Trait-based prompt definition
// =============================================================================

/// Trait for defining prompts with full control
///
/// Implement this trait when you need more control than the builder provides,
/// or when you want to define prompts as standalone types.
///
/// # Example
///
/// ```rust
/// use std::collections::HashMap;
/// use tower_mcp::prompt::McpPrompt;
/// use tower_mcp::protocol::{GetPromptResult, PromptArgument, PromptMessage, PromptRole, Content};
/// use tower_mcp::error::Result;
///
/// struct CodeReviewPrompt;
///
/// impl McpPrompt for CodeReviewPrompt {
///     const NAME: &'static str = "code_review";
///     const DESCRIPTION: &'static str = "Review code for issues";
///
///     fn arguments(&self) -> Vec<PromptArgument> {
///         vec![
///             PromptArgument {
///                 name: "code".to_string(),
///                 description: Some("The code to review".to_string()),
///                 required: true,
///             },
///             PromptArgument {
///                 name: "language".to_string(),
///                 description: Some("Programming language".to_string()),
///                 required: false,
///             },
///         ]
///     }
///
///     async fn get(&self, args: HashMap<String, String>) -> Result<GetPromptResult> {
///         let code = args.get("code").map(|s| s.as_str()).unwrap_or("");
///         let lang = args.get("language").map(|s| s.as_str()).unwrap_or("unknown");
///
///         Ok(GetPromptResult {
///             description: Some("Code review prompt".to_string()),
///             messages: vec![PromptMessage {
///                 role: PromptRole::User,
///                 content: Content::Text {
///                     text: format!("Please review this {} code:\n\n```{}\n{}\n```", lang, lang, code),
///                     annotations: None,
///                     meta: None,
///                 },
///                 meta: None,
///             }],
///             meta: None,
///         })
///     }
/// }
///
/// let prompt = CodeReviewPrompt.into_prompt();
/// assert_eq!(prompt.name, "code_review");
/// ```
pub trait McpPrompt: Send + Sync + 'static {
    /// The prompt name (must be unique within the router).
    const NAME: &'static str;
    /// A human-readable description of the prompt.
    const DESCRIPTION: &'static str;

    /// Define the arguments for this prompt
    fn arguments(&self) -> Vec<PromptArgument> {
        Vec::new()
    }

    /// Generate the prompt messages for the given arguments.
    fn get(
        &self,
        arguments: HashMap<String, String>,
    ) -> impl Future<Output = Result<GetPromptResult>> + Send;

    /// Convert to a Prompt instance
    fn into_prompt(self) -> Prompt
    where
        Self: Sized,
    {
        let arguments = self.arguments();
        let prompt = Arc::new(self);
        Prompt {
            name: Self::NAME.to_string(),
            title: None,
            description: Some(Self::DESCRIPTION.to_string()),
            icons: None,
            arguments,
            handler: Arc::new(McpPromptHandler { prompt }),
        }
    }
}

/// Wrapper to make McpPrompt implement PromptHandler
struct McpPromptHandler<T: McpPrompt> {
    prompt: Arc<T>,
}

impl<T: McpPrompt> PromptHandler for McpPromptHandler<T> {
    fn get(&self, arguments: HashMap<String, String>) -> BoxFuture<'_, Result<GetPromptResult>> {
        let prompt = self.prompt.clone();
        Box::pin(async move { prompt.get(arguments).await })
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[tokio::test]
    async fn test_builder_prompt() {
        let prompt = PromptBuilder::new("greet")
            .description("A greeting prompt")
            .required_arg("name", "Name to greet")
            .handler(|args| async move {
                let name = args.get("name").map(|s| s.as_str()).unwrap_or("World");
                Ok(GetPromptResult {
                    description: Some("Greeting".to_string()),
                    messages: vec![PromptMessage {
                        role: PromptRole::User,
                        content: Content::Text {
                            text: format!("Hello, {}!", name),
                            annotations: None,
                            meta: None,
                        },
                        meta: None,
                    }],
                    meta: None,
                })
            })
            .build();

        assert_eq!(prompt.name, "greet");
        assert_eq!(prompt.description.as_deref(), Some("A greeting prompt"));
        assert_eq!(prompt.arguments.len(), 1);
        assert!(prompt.arguments[0].required);

        let mut args = HashMap::new();
        args.insert("name".to_string(), "Alice".to_string());
        let result = prompt.get(args).await.unwrap();

        assert_eq!(result.messages.len(), 1);
        match &result.messages[0].content {
            Content::Text { text, .. } => assert_eq!(text, "Hello, Alice!"),
            _ => panic!("Expected text content"),
        }
    }

    #[tokio::test]
    async fn test_static_prompt() {
        let prompt = PromptBuilder::new("help")
            .description("Help prompt")
            .user_message("How can I help you today?");

        let result = prompt.get(HashMap::new()).await.unwrap();
        assert_eq!(result.messages.len(), 1);
        match &result.messages[0].content {
            Content::Text { text, .. } => assert_eq!(text, "How can I help you today?"),
            _ => panic!("Expected text content"),
        }
    }

    #[tokio::test]
    async fn test_trait_prompt() {
        struct TestPrompt;

        impl McpPrompt for TestPrompt {
            const NAME: &'static str = "test";
            const DESCRIPTION: &'static str = "A test prompt";

            fn arguments(&self) -> Vec<PromptArgument> {
                vec![PromptArgument {
                    name: "input".to_string(),
                    description: Some("Test input".to_string()),
                    required: true,
                }]
            }

            async fn get(&self, args: HashMap<String, String>) -> Result<GetPromptResult> {
                let input = args.get("input").map(|s| s.as_str()).unwrap_or("default");
                Ok(GetPromptResult {
                    description: Some("Test".to_string()),
                    messages: vec![PromptMessage {
                        role: PromptRole::User,
                        content: Content::Text {
                            text: format!("Input: {}", input),
                            annotations: None,
                            meta: None,
                        },
                        meta: None,
                    }],
                    meta: None,
                })
            }
        }

        let prompt = TestPrompt.into_prompt();
        assert_eq!(prompt.name, "test");
        assert_eq!(prompt.arguments.len(), 1);

        let mut args = HashMap::new();
        args.insert("input".to_string(), "hello".to_string());
        let result = prompt.get(args).await.unwrap();

        match &result.messages[0].content {
            Content::Text { text, .. } => assert_eq!(text, "Input: hello"),
            _ => panic!("Expected text content"),
        }
    }

    #[test]
    fn test_prompt_definition() {
        let prompt = PromptBuilder::new("test")
            .description("Test description")
            .required_arg("arg1", "First arg")
            .optional_arg("arg2", "Second arg")
            .user_message("Test");

        let def = prompt.definition();
        assert_eq!(def.name, "test");
        assert_eq!(def.description.as_deref(), Some("Test description"));
        assert_eq!(def.arguments.len(), 2);
        assert!(def.arguments[0].required);
        assert!(!def.arguments[1].required);
    }

    #[tokio::test]
    async fn test_handler_with_context() {
        let prompt = PromptBuilder::new("context_prompt")
            .description("A prompt with context")
            .handler_with_context(|ctx: RequestContext, args| async move {
                // Verify we have access to the context
                let _ = ctx.is_cancelled();
                let name = args.get("name").map(|s| s.as_str()).unwrap_or("World");
                Ok(GetPromptResult {
                    description: Some("Context prompt".to_string()),
                    messages: vec![PromptMessage {
                        role: PromptRole::User,
                        content: Content::Text {
                            text: format!("Hello, {}!", name),
                            annotations: None,
                            meta: None,
                        },
                        meta: None,
                    }],
                    meta: None,
                })
            })
            .build();

        assert_eq!(prompt.name, "context_prompt");
        assert!(prompt.uses_context());

        let ctx = RequestContext::new(RequestId::Number(1));
        let mut args = HashMap::new();
        args.insert("name".to_string(), "Alice".to_string());
        let result = prompt.get_with_context(ctx, args).await.unwrap();

        match &result.messages[0].content {
            Content::Text { text, .. } => assert_eq!(text, "Hello, Alice!"),
            _ => panic!("Expected text content"),
        }
    }

    #[tokio::test]
    async fn test_prompt_with_timeout_layer() {
        use std::time::Duration;
        use tower::timeout::TimeoutLayer;

        let prompt = PromptBuilder::new("timeout_prompt")
            .description("A prompt with timeout")
            .handler(|args: HashMap<String, String>| async move {
                let name = args.get("name").map(|s| s.as_str()).unwrap_or("World");
                Ok(GetPromptResult {
                    description: Some("Timeout prompt".to_string()),
                    messages: vec![PromptMessage {
                        role: PromptRole::User,
                        content: Content::Text {
                            text: format!("Hello, {}!", name),
                            annotations: None,
                            meta: None,
                        },
                        meta: None,
                    }],
                    meta: None,
                })
            })
            .layer(TimeoutLayer::new(Duration::from_secs(5)));

        assert_eq!(prompt.name, "timeout_prompt");

        let mut args = HashMap::new();
        args.insert("name".to_string(), "Alice".to_string());
        let result = prompt.get(args).await.unwrap();

        match &result.messages[0].content {
            Content::Text { text, .. } => assert_eq!(text, "Hello, Alice!"),
            _ => panic!("Expected text content"),
        }
    }

    #[tokio::test]
    async fn test_prompt_timeout_expires() {
        use std::time::Duration;
        use tower::timeout::TimeoutLayer;

        let prompt = PromptBuilder::new("slow_prompt")
            .description("A slow prompt")
            .handler(|_args: HashMap<String, String>| async move {
                // Sleep much longer than timeout to ensure timeout fires reliably in CI
                tokio::time::sleep(Duration::from_secs(1)).await;
                Ok(GetPromptResult {
                    description: Some("Slow prompt".to_string()),
                    messages: vec![PromptMessage {
                        role: PromptRole::User,
                        content: Content::Text {
                            text: "This should not appear".to_string(),
                            annotations: None,
                            meta: None,
                        },
                        meta: None,
                    }],
                    meta: None,
                })
            })
            .layer(TimeoutLayer::new(Duration::from_millis(50)));

        let result = prompt.get(HashMap::new()).await.unwrap();

        // Should get an error message due to timeout
        assert!(result.description.as_ref().unwrap().contains("error"));
        match &result.messages[0].content {
            Content::Text { text, .. } => {
                assert!(text.contains("Error generating prompt"));
            }
            _ => panic!("Expected text content"),
        }
    }

    #[tokio::test]
    async fn test_context_handler_with_layer() {
        use std::time::Duration;
        use tower::timeout::TimeoutLayer;

        let prompt = PromptBuilder::new("context_timeout")
            .description("Context prompt with timeout")
            .handler_with_context(
                |_ctx: RequestContext, args: HashMap<String, String>| async move {
                    let name = args.get("name").map(|s| s.as_str()).unwrap_or("World");
                    Ok(GetPromptResult {
                        description: Some("Context timeout".to_string()),
                        messages: vec![PromptMessage {
                            role: PromptRole::User,
                            content: Content::Text {
                                text: format!("Hello, {}!", name),
                                annotations: None,
                                meta: None,
                            },
                            meta: None,
                        }],
                        meta: None,
                    })
                },
            )
            .layer(TimeoutLayer::new(Duration::from_secs(5)));

        assert_eq!(prompt.name, "context_timeout");
        assert!(prompt.uses_context());

        let ctx = RequestContext::new(RequestId::Number(1));
        let mut args = HashMap::new();
        args.insert("name".to_string(), "Bob".to_string());
        let result = prompt.get_with_context(ctx, args).await.unwrap();

        match &result.messages[0].content {
            Content::Text { text, .. } => assert_eq!(text, "Hello, Bob!"),
            _ => panic!("Expected text content"),
        }
    }

    #[test]
    fn test_prompt_request_construction() {
        let args: HashMap<String, String> = [("key".to_string(), "value".to_string())]
            .into_iter()
            .collect();

        let req = PromptRequest::with_arguments(args.clone());
        assert_eq!(req.arguments.get("key"), Some(&"value".to_string()));

        let ctx = RequestContext::new(RequestId::Number(42));
        let req2 = PromptRequest::new(ctx, args);
        assert_eq!(req2.arguments.get("key"), Some(&"value".to_string()));
    }

    #[test]
    fn test_prompt_catch_error_clone() {
        // Just verify the type can be constructed and cloned
        let handler = PromptHandlerService {
            handler: |_args: HashMap<String, String>| async {
                Ok::<GetPromptResult, Error>(GetPromptResult {
                    description: None,
                    messages: vec![],
                    meta: None,
                })
            },
        };
        let catch_error = PromptCatchError::new(handler);
        let _clone = catch_error.clone();
        // PromptCatchError with PromptHandlerService doesn't implement Debug
        // because the handler function doesn't implement Debug
    }

    #[tokio::test]
    async fn test_prompt_handler_with_arguments() {
        let prompt = PromptBuilder::new("greet")
            .description("Greeting prompt")
            .required_arg("name", "Person to greet")
            .optional_arg("style", "Greeting style")
            .handler(|args: HashMap<String, String>| async move {
                let name = args.get("name").map(|s| s.as_str()).unwrap_or("World");
                let style = args.get("style").map(|s| s.as_str()).unwrap_or("casual");
                let text = match style {
                    "formal" => format!("Good day, {name}."),
                    _ => format!("Hey {name}!"),
                };
                Ok(GetPromptResult::user_message(text))
            })
            .build();

        // Test with both arguments
        let mut args = HashMap::new();
        args.insert("name".to_string(), "Alice".to_string());
        args.insert("style".to_string(), "formal".to_string());
        let result = prompt.get(args).await.unwrap();
        assert_eq!(result.messages.len(), 1);

        // Test with required arg only
        let mut args = HashMap::new();
        args.insert("name".to_string(), "Bob".to_string());
        let result = prompt.get(args).await.unwrap();
        assert_eq!(result.messages.len(), 1);
    }

    #[tokio::test]
    async fn test_prompt_definition_fields() {
        let prompt = PromptBuilder::new("test_prompt")
            .title("Test Prompt")
            .description("A test prompt")
            .required_arg("input", "The input")
            .optional_arg("format", "Output format")
            .handler(|_args: HashMap<String, String>| async move {
                Ok(GetPromptResult::user_message("test"))
            })
            .build();

        let def = prompt.definition();
        assert_eq!(def.name, "test_prompt");
        assert_eq!(def.title.as_deref(), Some("Test Prompt"));
        assert_eq!(def.description.as_deref(), Some("A test prompt"));
        assert_eq!(def.arguments.len(), 2);
        assert!(def.arguments[0].required);
        assert!(!def.arguments[1].required);
    }

    #[tokio::test]
    async fn test_prompt_with_context_handler() {
        let prompt = PromptBuilder::new("ctx_prompt")
            .description("Context-aware prompt")
            .handler_with_context(
                |ctx: RequestContext, args: HashMap<String, String>| async move {
                    let _ = ctx;
                    let name = args.get("name").map(|s| s.as_str()).unwrap_or("default");
                    Ok(GetPromptResult::user_message(format!("ctx: {name}")))
                },
            )
            .build();

        assert!(prompt.uses_context());

        let mut args = HashMap::new();
        args.insert("name".to_string(), "test".to_string());
        let ctx = RequestContext::new(RequestId::Number(1));
        let result: std::result::Result<GetPromptResult, Error> =
            prompt.get_with_context(ctx, args).await;
        assert!(result.is_ok());
        assert_eq!(result.unwrap().messages.len(), 1);
    }

    #[tokio::test]
    async fn test_prompt_with_layer_catches_timeout() {
        use std::time::Duration;
        use tower::timeout::TimeoutLayer;

        let prompt = PromptBuilder::new("slow_prompt")
            .description("Will timeout")
            .handler(|_args: HashMap<String, String>| async move {
                tokio::time::sleep(Duration::from_secs(10)).await;
                Ok(GetPromptResult::user_message("too late"))
            })
            .layer(TimeoutLayer::new(Duration::from_millis(10)));

        // The prompt goes through ServiceHandler -> PromptCatchError which
        // converts the timeout error into a GetPromptResult with an error message.
        // The .get() method delegates through the handler trait.
        let result = prompt.get(HashMap::new()).await;
        // PromptCatchError converts middleware errors to Ok(GetPromptResult)
        // with the error message in the prompt content.
        match result {
            Ok(r) => {
                // Should contain timeout error text in the message
                assert!(
                    !r.messages.is_empty(),
                    "Expected error message in prompt result"
                );
            }
            Err(_) => {
                // Also acceptable -- error propagated directly
            }
        }
    }

    #[tokio::test]
    async fn test_prompt_clone() {
        let prompt = PromptBuilder::new("cloneable")
            .description("Can be cloned")
            .handler(|_args: HashMap<String, String>| async move {
                Ok(GetPromptResult::user_message("original"))
            })
            .build();

        let cloned = prompt.clone();
        assert_eq!(cloned.name, "cloneable");

        let result = cloned.get(HashMap::new()).await.unwrap();
        assert_eq!(result.messages.len(), 1);
    }
}