relay-knowledge 1.1.17

Graph-database-based knowledge graph project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Direct transport lifecycle error tests.

use super::McpServeError;

#[test]
fn serve_errors_keep_operator_facing_messages() {
    assert_eq!(
        McpServeError::Disabled.to_string(),
        "MCP Streamable HTTP is not enabled"
    );
    assert_eq!(
        McpServeError::RemoteBindDisabled.to_string(),
        "MCP remote bind requires allow_remote_clients=true"
    );
}