forge-client 0.6.0

MCP client connections to downstream servers for Forge gateway
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
#![warn(missing_docs)]

//! # forge-client
//!
//! MCP client connections to downstream servers for the Forgemax Code Mode Gateway.
//!
//! Provides [`McpClient`] for connecting to individual MCP servers over stdio
//! or HTTP transports, and [`RouterDispatcher`] for routing tool calls to the
//! correct downstream server.

pub mod circuit_breaker;
pub mod reconnect;
pub mod router;
pub mod timeout;

use std::borrow::Cow;
use std::collections::HashMap;

use anyhow::{Context, Result};
use forge_sandbox::{ResourceDispatcher, ToolDispatcher};
use rmcp::model::{CallToolRequestParams, CallToolResult, Content, RawContent};
use rmcp::service::RunningService;
use rmcp::transport::streamable_http_client::StreamableHttpClientTransportConfig;
use rmcp::transport::{ConfigureCommandExt, StreamableHttpClientTransport, TokioChildProcess};
use rmcp::{RoleClient, ServiceExt};
use serde_json::Value;
use tokio::process::Command;

pub use circuit_breaker::{
    CircuitBreakerConfig, CircuitBreakerDispatcher, CircuitBreakerResourceDispatcher,
};
pub use reconnect::ReconnectingClient;
pub use router::{RouterDispatcher, RouterResourceDispatcher};
pub use timeout::{TimeoutDispatcher, TimeoutResourceDispatcher};

/// Configuration for connecting to a downstream MCP server.
#[derive(Debug, Clone)]
#[non_exhaustive]
pub enum TransportConfig {
    /// Connect via stdio to a child process.
    Stdio {
        /// Command to execute.
        command: String,
        /// Arguments to the command.
        args: Vec<String>,
        /// Explicit environment variables for the child process.
        env: HashMap<String, String>,
    },
    /// Connect via HTTP (Streamable HTTP / SSE).
    Http {
        /// URL of the MCP server endpoint.
        url: String,
        /// Optional HTTP headers (e.g., Authorization).
        headers: HashMap<String, String>,
    },
}

const STDIO_ENV_PASSTHROUGH: &[&str] = &[
    "PATH",
    "HOME",
    "USERPROFILE",
    "SYSTEMROOT",
    "WINDIR",
    "PATHEXT",
    "TEMP",
    "TMP",
    "TMPDIR",
    "SSL_CERT_FILE",
    "SSL_CERT_DIR",
];

fn stdio_child_env(explicit: &HashMap<String, String>) -> HashMap<String, String> {
    let mut env = HashMap::new();
    for key in STDIO_ENV_PASSTHROUGH {
        if let Ok(value) = std::env::var(key) {
            env.insert((*key).to_string(), value);
        }
    }
    for (key, value) in explicit {
        env.insert(key.clone(), value.clone());
    }
    env
}

fn redact_stdio_args(args: &[String]) -> Vec<String> {
    let mut redacted = Vec::with_capacity(args.len());
    let mut redact_next = false;

    for arg in args {
        if redact_next {
            redacted.push("[REDACTED]".to_string());
            redact_next = false;
            continue;
        }

        if let Some((name, _value)) = arg.split_once('=') {
            if is_sensitive_arg_name(name) {
                redacted.push(format!("{name}=[REDACTED]"));
                continue;
            }
        }

        if is_sensitive_arg_name(arg) {
            redacted.push(arg.clone());
            redact_next = true;
        } else if looks_like_secret_value(arg) {
            redacted.push("[REDACTED]".to_string());
        } else {
            redacted.push(arg.clone());
        }
    }

    redacted
}

fn is_sensitive_arg_name(arg: &str) -> bool {
    let name = arg
        .trim_start_matches('-')
        .to_ascii_lowercase()
        .replace(['_', '-'], "");
    name.contains("apikey")
        || name.contains("accesstoken")
        || name.contains("authtoken")
        || name == "token"
        || name.ends_with("token")
        || name.contains("secret")
        || name.contains("password")
        || name.contains("credential")
}

fn looks_like_secret_value(arg: &str) -> bool {
    let lower = arg.to_ascii_lowercase();
    lower.starts_with("bearer ")
        || lower.starts_with("sk-")
        || lower.starts_with("ghp_")
        || lower.starts_with("gho_")
        || lower.starts_with("ghs_")
        || lower.starts_with("ghr_")
        || lower.starts_with("github_pat_")
}

fn redact_url_for_log(url: &str) -> Cow<'_, str> {
    if let Some((base, _query)) = url.split_once('?') {
        Cow::Owned(format!("{base}?[REDACTED]"))
    } else {
        Cow::Borrowed(url)
    }
}

/// A client connection to a single downstream MCP server.
///
/// Wraps an rmcp client session and implements [`ToolDispatcher`] for routing
/// tool calls from the sandbox.
pub struct McpClient {
    name: String,
    inner: ClientInner,
}

enum ClientInner {
    Stdio(RunningService<RoleClient, ()>),
    Http(RunningService<RoleClient, ()>),
}

impl ClientInner {
    fn peer(&self) -> &rmcp::Peer<RoleClient> {
        match self {
            ClientInner::Stdio(s) => s,
            ClientInner::Http(s) => s,
        }
    }
}

/// Information about a tool discovered from a downstream server.
#[derive(Debug, Clone)]
pub struct ToolInfo {
    /// Tool name.
    pub name: String,
    /// Tool description.
    pub description: Option<String>,
    /// JSON Schema for the tool's input parameters.
    pub input_schema: Value,
}

/// Information about a resource discovered from a downstream server.
#[derive(Debug, Clone)]
pub struct ResourceInfo {
    /// Resource URI.
    pub uri: String,
    /// Human-readable name.
    pub name: String,
    /// Description.
    pub description: Option<String>,
    /// MIME type.
    pub mime_type: Option<String>,
}

impl McpClient {
    /// Connect to a downstream MCP server over stdio (child process).
    ///
    /// Spawns the given command as a child process and communicates via stdin/stdout.
    pub async fn connect_stdio(
        name: impl Into<String>,
        command: &str,
        args: &[&str],
    ) -> Result<Self> {
        Self::connect_stdio_with_env(name, command, args, HashMap::new()).await
    }

    /// Connect to a downstream MCP server over stdio with an explicit environment.
    ///
    /// The child process receives only a small launch environment plus `env`.
    /// Arbitrary parent-process environment variables are not inherited.
    pub async fn connect_stdio_with_env(
        name: impl Into<String>,
        command: &str,
        args: &[&str],
        env: HashMap<String, String>,
    ) -> Result<Self> {
        let name = name.into();
        let args_owned: Vec<String> = args.iter().map(|s| s.to_string()).collect();
        let child_env = stdio_child_env(&env);
        let mut env_keys: Vec<&str> = child_env.keys().map(String::as_str).collect();
        env_keys.sort_unstable();

        tracing::info!(
            server = %name,
            command = %command,
            arg_count = args_owned.len(),
            env_keys = ?env_keys,
            "connecting to downstream MCP server (stdio)"
        );
        tracing::debug!(
            server = %name,
            command = %command,
            args = ?redact_stdio_args(&args_owned),
            "stdio command arguments"
        );

        let transport = TokioChildProcess::new(Command::new(command).configure(|cmd| {
            cmd.env_clear();
            for (key, value) in &child_env {
                cmd.env(key, value);
            }
            for arg in &args_owned {
                cmd.arg(arg);
            }
        }))
        .with_context(|| {
            format!(
                "failed to spawn stdio transport for server '{}' (command: {})",
                name, command
            )
        })?;

        let service: RunningService<RoleClient, ()> = ()
            .serve(transport)
            .await
            .with_context(|| format!("MCP handshake failed for server '{}'", name))?;

        tracing::info!(server = %name, "connected to downstream MCP server (stdio)");

        Ok(Self {
            name,
            inner: ClientInner::Stdio(service),
        })
    }

    /// Connect to a downstream MCP server over HTTP (Streamable HTTP / SSE).
    pub async fn connect_http(
        name: impl Into<String>,
        url: &str,
        headers: Option<HashMap<String, String>>,
    ) -> Result<Self> {
        let name = name.into();

        if url.starts_with("http://") {
            tracing::warn!(
                server = %name,
                url = %redact_url_for_log(url),
                "connecting over plain HTTP — consider using HTTPS for production"
            );
        }

        tracing::info!(
            server = %name,
            url = %redact_url_for_log(url),
            "connecting to downstream MCP server (HTTP)"
        );

        let mut config = StreamableHttpClientTransportConfig::with_uri(url);

        // Fail-closed: reject credentials on plain HTTP
        if let Some(ref hdrs) = headers {
            check_http_credential_safety(url, hdrs)?;
        }

        // Defense-in-depth belt: also strip sensitive headers on plain HTTP
        let headers = headers.map(|mut h| {
            sanitize_headers_for_transport(url, &mut h);
            h
        });

        if let Some(hdrs) = &headers {
            for (key, value) in hdrs {
                if key.to_lowercase() == "authorization" {
                    tracing::debug!(server = %name, header = %key, "setting auth header (redacted)");
                } else {
                    tracing::debug!(server = %name, header = %key, value = %value, "setting header");
                }
            }

            let mut header_map = HashMap::new();
            for (key, value) in hdrs {
                let header_name = http::HeaderName::from_bytes(key.as_bytes())
                    .with_context(|| format!("invalid header name: {key}"))?;
                let header_value = http::HeaderValue::from_str(value)
                    .with_context(|| format!("invalid header value for {key}"))?;
                header_map.insert(header_name, header_value);
            }
            config = config.custom_headers(header_map);
        }

        let transport = StreamableHttpClientTransport::from_config(config);
        let service: RunningService<RoleClient, ()> = ()
            .serve(transport)
            .await
            .with_context(|| format!("MCP handshake failed for server '{}' (HTTP)", name))?;

        tracing::info!(server = %name, "connected to downstream MCP server (HTTP)");

        Ok(Self {
            name,
            inner: ClientInner::Http(service),
        })
    }

    /// Connect using a [`TransportConfig`].
    pub async fn connect(name: impl Into<String>, config: &TransportConfig) -> Result<Self> {
        let name = name.into();
        match config {
            TransportConfig::Stdio { command, args, env } => {
                let arg_refs: Vec<&str> = args.iter().map(|s| s.as_str()).collect();
                Self::connect_stdio_with_env(name, command, &arg_refs, env.clone()).await
            }
            TransportConfig::Http { url, headers } => {
                let hdrs = if headers.is_empty() {
                    None
                } else {
                    Some(headers.clone())
                };
                Self::connect_http(name, url, hdrs).await
            }
        }
    }

    /// List all tools available on this server.
    pub async fn list_tools(&self) -> Result<Vec<ToolInfo>> {
        let tools = self
            .inner
            .peer()
            .list_all_tools()
            .await
            .with_context(|| format!("failed to list tools for server '{}'", self.name))?;

        Ok(tools
            .into_iter()
            .map(|t| ToolInfo {
                name: t.name.to_string(),
                description: t.description.map(|d: Cow<'_, str>| d.to_string()),
                input_schema: serde_json::to_value(&*t.input_schema)
                    .unwrap_or(Value::Object(Default::default())),
            })
            .collect())
    }

    /// List all resources available on this server.
    ///
    /// Returns an empty Vec if the server does not support resources
    /// (graceful degradation — not all MCP servers implement resources/list).
    pub async fn list_resources(&self) -> Result<Vec<ResourceInfo>> {
        let result = self.inner.peer().list_resources(None).await;

        match result {
            Ok(list) => Ok(list
                .resources
                .into_iter()
                .map(|r| ResourceInfo {
                    uri: r.uri.clone(),
                    name: r.name.clone(),
                    description: r.description.clone(),
                    mime_type: r.mime_type.clone(),
                })
                .collect()),
            Err(e) => {
                let err_str = e.to_string();
                // Graceful degradation: treat "method not found" as "no resources"
                if err_str.contains("Method not found")
                    || err_str.contains("method not found")
                    || err_str.contains("-32601")
                {
                    tracing::debug!(
                        server = %self.name,
                        "server does not support resources/list, returning empty"
                    );
                    Ok(vec![])
                } else {
                    Err(anyhow::anyhow!(
                        "failed to list resources for server '{}': {}",
                        self.name,
                        e
                    ))
                }
            }
        }
    }

    /// Read a specific resource by URI.
    pub async fn read_resource(&self, uri: &str) -> Result<Value> {
        let result = self
            .inner
            .peer()
            .read_resource(rmcp::model::ReadResourceRequestParams::new(uri))
            .await
            .with_context(|| {
                format!(
                    "resource read failed: server='{}', uri='{}'",
                    self.name, uri
                )
            })?;

        // Convert resource contents to JSON
        let contents = result.contents;
        if contents.is_empty() {
            return Ok(Value::Null);
        }

        if contents.len() == 1 {
            resource_content_to_value(&contents[0])
        } else {
            let values: Vec<Value> = contents
                .iter()
                .filter_map(|c| resource_content_to_value(c).ok())
                .collect();
            Ok(Value::Array(values))
        }
    }

    /// Get the server name.
    pub fn name(&self) -> &str {
        &self.name
    }

    /// Gracefully disconnect from the server.
    pub async fn disconnect(self) -> Result<()> {
        tracing::info!(server = %self.name, "disconnecting from downstream MCP server");
        match self.inner {
            ClientInner::Stdio(s) => {
                let _ = s.cancel().await;
            }
            ClientInner::Http(s) => {
                let _ = s.cancel().await;
            }
        }
        Ok(())
    }
}

#[async_trait::async_trait]
impl ToolDispatcher for McpClient {
    async fn call_tool(
        &self,
        _server: &str,
        tool: &str,
        args: Value,
    ) -> Result<Value, forge_error::DispatchError> {
        let arguments = args.as_object().cloned().or_else(|| {
            if args.is_null() {
                Some(serde_json::Map::new())
            } else {
                None
            }
        });

        let result: CallToolResult = self
            .inner
            .peer()
            .call_tool(
                CallToolRequestParams::new(tool.to_string())
                    .with_arguments(arguments.unwrap_or_default()),
            )
            .await
            .map_err(|e| {
                let msg = format!("tool call failed: tool='{}': {}", tool, e);
                let err_str = e.to_string();
                if is_transport_dead(&err_str) {
                    forge_error::DispatchError::TransportDead {
                        server: self.name.clone(),
                        reason: msg,
                    }
                } else {
                    forge_error::DispatchError::Upstream {
                        server: self.name.clone(),
                        message: msg,
                    }
                }
            })?;

        // Tool-level errors (isError: true) mean the server is healthy but
        // the tool rejected the request (wrong params, missing state, etc.).
        // These must NOT trip the circuit breaker.
        if result.is_error == Some(true) && result.structured_content.is_none() {
            let error_text = result
                .content
                .iter()
                .filter_map(|c| match &c.raw {
                    RawContent::Text(t) => Some(t.text.as_str()),
                    _ => None,
                })
                .collect::<Vec<_>>()
                .join("\n");
            return Err(forge_error::DispatchError::ToolError {
                server: self.name.clone(),
                tool: tool.to_string(),
                message: format!("tool returned error: {}", error_text),
            });
        }

        call_tool_result_to_value(result).map_err(|e| forge_error::DispatchError::Upstream {
            server: self.name.clone(),
            message: e.to_string(),
        })
    }
}

#[async_trait::async_trait]
impl ResourceDispatcher for McpClient {
    async fn read_resource(
        &self,
        _server: &str,
        uri: &str,
    ) -> Result<Value, forge_error::DispatchError> {
        self.read_resource(uri).await.map_err(|e| {
            let msg = format!("resource read failed: uri='{}': {}", uri, e);
            let err_str = e.to_string();
            if is_transport_dead(&err_str) {
                forge_error::DispatchError::TransportDead {
                    server: self.name.clone(),
                    reason: msg,
                }
            } else {
                forge_error::DispatchError::Upstream {
                    server: self.name.clone(),
                    message: msg,
                }
            }
        })
    }
}

/// Returns true if the error string indicates a permanently dead transport.
///
/// Detects patterns from rmcp's internal channel overflow, broken pipes,
/// and closed transports that indicate the MCP client session is unrecoverable.
fn is_transport_dead(err_str: &str) -> bool {
    err_str.contains("TransportClosed")
        || err_str.contains("transport closed")
        || err_str.contains("channel closed")
        || err_str.contains("broken pipe")
        || err_str.contains("Broken pipe")
        || err_str.contains("BrokenPipe")
}

/// Convert a resource content item to a JSON Value.
fn resource_content_to_value(content: &rmcp::model::ResourceContents) -> Result<Value> {
    match content {
        rmcp::model::ResourceContents::TextResourceContents { text, .. } => {
            // Try to parse as JSON first, fall back to string
            serde_json::from_str(text).or_else(|_| Ok(Value::String(text.clone())))
        }
        rmcp::model::ResourceContents::BlobResourceContents {
            blob, mime_type, ..
        } => Ok(serde_json::json!({
            "_type": "blob",
            "_encoding": "base64",
            "data": blob,
            "mime_type": mime_type.as_deref().unwrap_or("application/octet-stream"),
        })),
    }
}

/// Convert an MCP CallToolResult to a JSON Value.
fn call_tool_result_to_value(result: CallToolResult) -> Result<Value> {
    if let Some(structured) = result.structured_content {
        return Ok(structured);
    }

    if result.is_error == Some(true) {
        let error_text = result
            .content
            .iter()
            .filter_map(|c| match &c.raw {
                RawContent::Text(t) => Some(t.text.as_str()),
                _ => None,
            })
            .collect::<Vec<_>>()
            .join("\n");
        return Err(anyhow::anyhow!("tool returned error: {}", error_text));
    }

    if result.content.len() == 1 {
        content_to_value(&result.content[0])
    } else if result.content.is_empty() {
        Ok(Value::Null)
    } else {
        let values: Vec<Value> = result
            .content
            .iter()
            .filter_map(|c| content_to_value(c).ok())
            .collect();
        Ok(Value::Array(values))
    }
}

/// Maximum size in bytes for binary content (images, audio) before truncation.
const MAX_BINARY_CONTENT_SIZE: usize = 1_048_576; // 1 MB

/// Maximum size in bytes for text content before truncation.
/// Prevents OOM from enormous text responses from compromised downstream servers.
const MAX_TEXT_CONTENT_SIZE: usize = 10_485_760; // 10 MB

fn floor_char_boundary(s: &str, max: usize) -> usize {
    let mut end = max.min(s.len());
    while end > 0 && !s.is_char_boundary(end) {
        end -= 1;
    }
    end
}

/// Convert a single Content item to a JSON Value.
///
/// Binary content (images, audio) larger than [`MAX_BINARY_CONTENT_SIZE`] is
/// replaced with truncation metadata to prevent OOM on large base64 payloads.
fn content_to_value(content: &Content) -> Result<Value> {
    match &content.raw {
        RawContent::Text(t) => {
            if t.text.len() > MAX_TEXT_CONTENT_SIZE {
                let preview_end = floor_char_boundary(&t.text, 1024);
                Ok(serde_json::json!({
                    "type": "text",
                    "truncated": true,
                    "original_size": t.text.len(),
                    "preview": &t.text[..preview_end],
                }))
            } else {
                serde_json::from_str(&t.text).or_else(|_| Ok(Value::String(t.text.clone())))
            }
        }
        RawContent::Image(img) => {
            if img.data.len() > MAX_BINARY_CONTENT_SIZE {
                Ok(serde_json::json!({
                    "type": "image",
                    "truncated": true,
                    "original_size": img.data.len(),
                    "mime_type": img.mime_type,
                }))
            } else {
                Ok(serde_json::json!({
                    "type": "image",
                    "data": img.data,
                    "mime_type": img.mime_type,
                }))
            }
        }
        RawContent::Resource(r) => Ok(serde_json::json!({
            "type": "resource",
            "resource": serde_json::to_value(&r.resource).unwrap_or(Value::Null),
        })),
        RawContent::Audio(a) => {
            if a.data.len() > MAX_BINARY_CONTENT_SIZE {
                Ok(serde_json::json!({
                    "type": "audio",
                    "truncated": true,
                    "original_size": a.data.len(),
                    "mime_type": a.mime_type,
                }))
            } else {
                Ok(serde_json::json!({
                    "type": "audio",
                    "data": a.data,
                    "mime_type": a.mime_type,
                }))
            }
        }
        _ => Ok(serde_json::json!({"type": "unknown"})),
    }
}

/// Sensitive header name substrings (lowercase). Any header whose lowercased name
/// contains one of these is stripped on plain HTTP connections.
const SENSITIVE_HEADER_PATTERNS: &[&str] = &[
    "authorization",
    "cookie",
    "token",
    "secret",
    "key",
    "credential",
    "password",
    "auth",
];

/// Returns true if the header name matches a sensitive pattern.
fn is_sensitive_header(name: &str) -> bool {
    let lower = name.to_lowercase();
    SENSITIVE_HEADER_PATTERNS
        .iter()
        .any(|pattern| lower.contains(pattern))
}

/// Check that credentials are not being sent over plain HTTP.
///
/// Returns an error if any sensitive headers are present on an `http://` connection.
/// This is fail-closed: operators must fix their config to use HTTPS before credentials
/// will be sent.
fn check_http_credential_safety(
    url: &str,
    headers: &HashMap<String, String>,
) -> Result<(), anyhow::Error> {
    if url.starts_with("http://") {
        let sensitive: Vec<&String> = headers.keys().filter(|k| is_sensitive_header(k)).collect();
        if !sensitive.is_empty() {
            return Err(anyhow::anyhow!(
                "refusing to send credentials over plain HTTP (headers: {}). \
                 Use HTTPS or remove sensitive headers.",
                sensitive
                    .iter()
                    .map(|s| s.as_str())
                    .collect::<Vec<_>>()
                    .join(", ")
            ));
        }
    }
    Ok(())
}

/// Strip sensitive headers from HTTP connections over plain HTTP.
///
/// Defense-in-depth belt behind [`check_http_credential_safety`].
/// Strips any header whose name contains "auth", "token", "secret", "key",
/// "cookie", "credential", or "password" (case-insensitive) to prevent
/// accidental credential leakage over unencrypted transports.
fn sanitize_headers_for_transport(url: &str, headers: &mut HashMap<String, String>) {
    if url.starts_with("http://") {
        let removed: Vec<String> = headers
            .keys()
            .filter(|k| is_sensitive_header(k))
            .cloned()
            .collect();
        for key in &removed {
            headers.remove(key);
        }
        if !removed.is_empty() {
            tracing::warn!(
                url = %url,
                removed_headers = ?removed,
                "stripped sensitive headers from plain HTTP connection — use HTTPS to send credentials"
            );
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use rmcp::model::{Content, RawContent};

    #[test]
    fn content_to_value_text_string() {
        let content = Content::text("hello");
        let val = content_to_value(&content).unwrap();
        assert_eq!(val, Value::String("hello".into()));
    }

    #[test]
    fn content_to_value_text_json() {
        let content = Content::text(r#"{"k":"v"}"#);
        let val = content_to_value(&content).unwrap();
        assert_eq!(val, serde_json::json!({"k": "v"}));
    }

    #[test]
    fn content_to_value_small_image_preserved() {
        let small_data = "a".repeat(1024); // 1KB
        let content = Content::image(small_data.clone(), "image/png");
        let val = content_to_value(&content).unwrap();
        assert_eq!(val["type"], "image");
        assert_eq!(val["data"], small_data);
        assert!(val.get("truncated").is_none());
    }

    #[test]
    fn content_to_value_oversized_image_truncated() {
        let large_data = "a".repeat(2 * 1024 * 1024); // 2MB
        let content = Content::image(large_data, "image/png");
        let val = content_to_value(&content).unwrap();
        assert_eq!(val["type"], "image");
        assert_eq!(val["truncated"], true);
        assert!(val.get("data").is_none());
        assert!(val["original_size"].as_u64().unwrap() > MAX_BINARY_CONTENT_SIZE as u64);
    }

    #[test]
    fn content_to_value_oversized_audio_truncated() {
        let large_data = "a".repeat(2 * 1024 * 1024); // 2MB
        let content = Content {
            raw: RawContent::Audio(rmcp::model::RawAudioContent {
                data: large_data,
                mime_type: "audio/wav".into(),
            }),
            annotations: None,
        };
        let val = content_to_value(&content).unwrap();
        assert_eq!(val["type"], "audio");
        assert_eq!(val["truncated"], true);
        assert!(val.get("data").is_none());
    }

    #[test]
    fn content_to_value_oversized_text_truncated() {
        let large_text = "x".repeat(11 * 1024 * 1024); // 11MB
        let content = Content::text(large_text);
        let val = content_to_value(&content).unwrap();
        assert_eq!(val["type"], "text");
        assert_eq!(val["truncated"], true);
        assert!(val["original_size"].as_u64().unwrap() > MAX_TEXT_CONTENT_SIZE as u64);
        assert!(val["preview"].as_str().unwrap().len() <= 1024);
    }

    #[test]
    fn content_to_value_oversized_text_truncates_on_char_boundary() {
        let large_text = "€".repeat((MAX_TEXT_CONTENT_SIZE / 3) + 100);
        let content = Content::text(large_text);
        let val = content_to_value(&content).unwrap();
        assert_eq!(val["type"], "text");
        assert_eq!(val["truncated"], true);
        assert!(val["preview"].as_str().unwrap().is_char_boundary(0));
    }

    #[test]
    fn content_to_value_normal_text_not_truncated() {
        let normal_text = "x".repeat(1024); // 1KB — well under limit
        let content = Content::text(normal_text.clone());
        let val = content_to_value(&content).unwrap();
        assert_eq!(val, Value::String(normal_text));
    }

    #[test]
    fn sanitize_headers_strips_auth_on_http() {
        let mut headers = HashMap::new();
        headers.insert("Authorization".into(), "Bearer secret".into());
        headers.insert("Content-Type".into(), "application/json".into());
        sanitize_headers_for_transport("http://example.com/mcp", &mut headers);
        assert!(!headers.contains_key("Authorization"));
        assert!(headers.contains_key("Content-Type"));
    }

    #[test]
    fn sanitize_headers_strips_api_key_on_http() {
        let mut headers = HashMap::new();
        headers.insert("X-Api-Key".into(), "sk-123".into());
        headers.insert("Content-Type".into(), "application/json".into());
        sanitize_headers_for_transport("http://example.com/mcp", &mut headers);
        assert!(!headers.contains_key("X-Api-Key"));
        assert!(headers.contains_key("Content-Type"));
    }

    #[test]
    fn sanitize_headers_strips_cookie_on_http() {
        let mut headers = HashMap::new();
        headers.insert("Cookie".into(), "session=abc123".into());
        sanitize_headers_for_transport("http://example.com/mcp", &mut headers);
        assert!(!headers.contains_key("Cookie"));
    }

    #[test]
    fn sanitize_headers_strips_custom_token_on_http() {
        let mut headers = HashMap::new();
        headers.insert("X-Auth-Token".into(), "tok_secret".into());
        headers.insert("X-Secret-Key".into(), "s3cr3t".into());
        headers.insert("X-Custom-Credential".into(), "cred".into());
        headers.insert("X-Password".into(), "pass".into());
        headers.insert("Accept".into(), "application/json".into());
        sanitize_headers_for_transport("http://example.com/mcp", &mut headers);
        assert!(!headers.contains_key("X-Auth-Token"));
        assert!(!headers.contains_key("X-Secret-Key"));
        assert!(!headers.contains_key("X-Custom-Credential"));
        assert!(!headers.contains_key("X-Password"));
        assert!(headers.contains_key("Accept"));
    }

    #[test]
    fn sanitize_headers_preserves_all_on_https() {
        let mut headers = HashMap::new();
        headers.insert("Authorization".into(), "Bearer secret".into());
        headers.insert("X-Api-Key".into(), "sk-123".into());
        headers.insert("Cookie".into(), "session=abc".into());
        sanitize_headers_for_transport("https://example.com/mcp", &mut headers);
        assert!(headers.contains_key("Authorization"));
        assert!(headers.contains_key("X-Api-Key"));
        assert!(headers.contains_key("Cookie"));
    }

    // --- HTTP-SEC-01: rejects credentials on plain HTTP ---
    #[test]
    fn http_sec_01_rejects_creds_on_http() {
        let mut headers = HashMap::new();
        headers.insert("Authorization".into(), "Bearer secret".into());
        let err = check_http_credential_safety("http://example.com/mcp", &headers);
        assert!(err.is_err(), "should reject creds on HTTP");
        let msg = err.unwrap_err().to_string();
        assert!(
            msg.contains("plain HTTP"),
            "error should mention plain HTTP: {msg}"
        );
    }

    // --- HTTP-SEC-02: allows HTTP without credentials ---
    #[test]
    fn http_sec_02_allows_http_without_creds() {
        let mut headers = HashMap::new();
        headers.insert("Content-Type".into(), "application/json".into());
        assert!(check_http_credential_safety("http://example.com/mcp", &headers).is_ok());
        // Empty headers also OK
        assert!(check_http_credential_safety("http://example.com/mcp", &HashMap::new()).is_ok());
    }

    // --- HTTP-SEC-03: allows HTTPS with credentials ---
    #[test]
    fn http_sec_03_allows_https_with_creds() {
        let mut headers = HashMap::new();
        headers.insert("Authorization".into(), "Bearer secret".into());
        headers.insert("X-Api-Key".into(), "sk-123".into());
        assert!(check_http_credential_safety("https://example.com/mcp", &headers).is_ok());
    }

    #[test]
    fn is_sensitive_header_matches() {
        assert!(is_sensitive_header("Authorization"));
        assert!(is_sensitive_header("x-api-key"));
        assert!(is_sensitive_header("Cookie"));
        assert!(is_sensitive_header("X-Auth-Token"));
        assert!(is_sensitive_header("X-Secret-Key"));
        assert!(is_sensitive_header("X-Custom-Credential"));
        assert!(is_sensitive_header("X-Password"));
        assert!(!is_sensitive_header("Content-Type"));
        assert!(!is_sensitive_header("Accept"));
        assert!(!is_sensitive_header("User-Agent"));
    }

    #[test]
    fn stdio_child_env_only_preserves_launch_allowlist_and_explicit_env() {
        let mut explicit = HashMap::new();
        explicit.insert("GITHUB_TOKEN".to_string(), "secret123".to_string());

        let env = stdio_child_env(&explicit);

        assert_eq!(
            env.get("GITHUB_TOKEN").map(String::as_str),
            Some("secret123")
        );
        for key in env.keys() {
            assert!(
                STDIO_ENV_PASSTHROUGH.contains(&key.as_str()) || key == "GITHUB_TOKEN",
                "unexpected inherited env var: {key}"
            );
        }
    }

    #[test]
    fn redact_stdio_args_removes_sensitive_values() {
        let args = vec![
            "--repos".to_string(),
            ".".to_string(),
            "--access-token".to_string(),
            "secret-token".to_string(),
            "--api-key=sk-live-123".to_string(),
            "ghp_abcdefghijklmnopqrstuvwxyz".to_string(),
        ];

        let redacted = redact_stdio_args(&args);

        assert_eq!(redacted[0], "--repos");
        assert_eq!(redacted[1], ".");
        assert_eq!(redacted[2], "--access-token");
        assert_eq!(redacted[3], "[REDACTED]");
        assert_eq!(redacted[4], "--api-key=[REDACTED]");
        assert_eq!(redacted[5], "[REDACTED]");
    }

    #[test]
    fn redact_url_for_log_removes_query_string() {
        assert_eq!(
            redact_url_for_log("https://example.com/mcp?token=secret").as_ref(),
            "https://example.com/mcp?[REDACTED]"
        );
        assert_eq!(
            redact_url_for_log("https://example.com/mcp").as_ref(),
            "https://example.com/mcp"
        );
    }

    // --- isError classification tests ---

    #[test]
    fn call_tool_result_is_error_true_returns_err() {
        let result = CallToolResult::error(vec![Content::text(
            "Invalid params: missing field 'base_url'",
        )]);
        let err = call_tool_result_to_value(result);
        assert!(err.is_err());
        let msg = err.unwrap_err().to_string();
        assert!(
            msg.contains("Invalid params"),
            "expected error text, got: {msg}"
        );
    }

    #[test]
    fn call_tool_result_success_returns_ok() {
        let result = CallToolResult::success(vec![Content::text(r#"{"status": "ok"}"#)]);
        let val = call_tool_result_to_value(result).unwrap();
        assert_eq!(val["status"], "ok");
    }

    #[test]
    fn call_tool_result_structured_content_takes_priority_over_is_error() {
        let structured = serde_json::json!({"data": "important"});
        let mut result = CallToolResult::error(vec![Content::text("error text")]);
        result.structured_content = Some(structured.clone());
        let val = call_tool_result_to_value(result).unwrap();
        assert_eq!(val, structured);
    }

    // --- Transport death detection tests ---

    #[test]
    fn transport_dead_detects_transport_closed() {
        assert!(is_transport_dead("TransportClosed: channel full"));
        assert!(is_transport_dead("error: transport closed unexpectedly"));
        assert!(is_transport_dead("channel closed by peer"));
        assert!(is_transport_dead("broken pipe while writing"));
        assert!(is_transport_dead("Broken pipe (os error 32)"));
        assert!(is_transport_dead("BrokenPipe"));
    }

    #[test]
    fn transport_dead_rejects_normal_errors() {
        assert!(!is_transport_dead("tool not found: echo"));
        assert!(!is_transport_dead("timeout after 5000ms"));
        assert!(!is_transport_dead("Invalid params: missing field"));
        assert!(!is_transport_dead("connection refused"));
    }

    /// Compile-time guard: TransportConfig is #[non_exhaustive].
    #[test]
    #[allow(unreachable_patterns)]
    fn ne_transport_config_is_non_exhaustive() {
        let config = TransportConfig::Stdio {
            command: "test".into(),
            args: vec![],
            env: HashMap::new(),
        };
        match config {
            TransportConfig::Stdio { .. } | TransportConfig::Http { .. } => {}
            _ => {}
        }
    }
}