mcpkit 0.5.0

Rust SDK for the Model Context Protocol (MCP) - the official facade crate providing unified access to all mcpkit functionality
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
//! End-to-end HTTP transport tests.
//!
//! These tests verify that MCP communication works correctly over HTTP.
//! They require the `http` feature flag to be enabled.

#![cfg(feature = "http")]

use axum::{
    Router,
    extract::State,
    http::{HeaderMap, StatusCode},
    routing::post,
};
use mcpkit::protocol::{Message, Request, RequestId, Response};
use serde_json::json;
use std::net::SocketAddr;
use std::sync::Arc;
use std::time::Duration;
use tokio::net::TcpListener;
use tokio::sync::RwLock;
use tokio::time::timeout;

/// MCP Protocol version header (lowercase for HTTP/2 compatibility).
const MCP_PROTOCOL_VERSION_HEADER: &str = "mcp-protocol-version";
const MCP_PROTOCOL_VERSION: &str = "2025-11-25";
const MCP_SESSION_ID_HEADER: &str = "mcp-session-id";

/// Simple server state
#[derive(Clone, Default)]
struct TestServerState {
    request_count: Arc<RwLock<u64>>,
}

/// Helper to find an available port
async fn get_available_addr() -> Result<SocketAddr, Box<dyn std::error::Error>> {
    let listener = TcpListener::bind("127.0.0.1:0").await?;
    Ok(listener.local_addr()?)
}

/// Handle MCP POST requests
async fn handle_mcp_request(
    State(state): State<TestServerState>,
    headers: HeaderMap,
    body: String,
) -> axum::response::Response {
    use axum::response::IntoResponse;

    // Check protocol version header
    let _version = headers
        .get(MCP_PROTOCOL_VERSION_HEADER)
        .and_then(|v| v.to_str().ok())
        .unwrap_or(MCP_PROTOCOL_VERSION);

    // Parse the JSON-RPC message
    let msg: Message = match serde_json::from_str(&body) {
        Ok(m) => m,
        Err(e) => {
            let error_response = json!({
                "jsonrpc": "2.0",
                "id": null,
                "error": {
                    "code": -32700,
                    "message": format!("Parse error: {}", e)
                }
            });
            return (
                StatusCode::OK,
                [(axum::http::header::CONTENT_TYPE, "application/json")],
                error_response.to_string(),
            )
                .into_response();
        }
    };

    // Update request count
    {
        let mut count = state.request_count.write().await;
        *count += 1;
    }

    // Handle the request
    let response = match msg {
        Message::Request(req) => {
            let resp = match req.method.as_ref() {
                "initialize" => Response::success(
                    req.id,
                    json!({
                        "protocolVersion": MCP_PROTOCOL_VERSION,
                        "serverInfo": {
                            "name": "test-http-server",
                            "version": "1.0.0"
                        },
                        "capabilities": {
                            "tools": {},
                            "resources": {}
                        }
                    }),
                ),
                "tools/list" => Response::success(req.id, json!({ "tools": [] })),
                "resources/list" => Response::success(req.id, json!({ "resources": [] })),
                "ping" => Response::success(req.id, json!({})),
                _ => Response::error(
                    req.id,
                    mcpkit::error::JsonRpcError::method_not_found(req.method.to_string()),
                ),
            };
            Message::Response(resp)
        }
        Message::Notification(_) => {
            // Notifications don't get a response
            return (
                StatusCode::ACCEPTED,
                [(axum::http::header::CONTENT_TYPE, "application/json")],
                String::new(),
            )
                .into_response();
        }
        Message::Response(_) => {
            // Servers don't receive responses
            return (
                StatusCode::BAD_REQUEST,
                [(axum::http::header::CONTENT_TYPE, "application/json")],
                json!({"error": "unexpected response"}).to_string(),
            )
                .into_response();
        }
    };

    let body = serde_json::to_string(&response).unwrap();

    // Build response with headers including session ID
    let mut resp_headers = axum::http::HeaderMap::new();
    resp_headers.insert(
        axum::http::header::CONTENT_TYPE,
        "application/json".parse().unwrap(),
    );
    resp_headers.insert(
        axum::http::header::HeaderName::from_static("mcp-session-id"),
        "test-session-id".parse().unwrap(),
    );

    (StatusCode::OK, resp_headers, body).into_response()
}

/// Spawn a test HTTP server
async fn spawn_test_server(addr: SocketAddr) -> tokio::task::JoinHandle<()> {
    let state = TestServerState::default();
    let app = Router::new()
        .route("/mcp", post(handle_mcp_request))
        .with_state(state);

    tokio::spawn(async move {
        let listener = TcpListener::bind(addr).await.unwrap();
        axum::serve(listener, app).await.unwrap();
    })
}

#[tokio::test]
async fn test_http_basic_request() -> Result<(), Box<dyn std::error::Error>> {
    let addr = get_available_addr().await?;
    let _server = spawn_test_server(addr).await;

    // Give server time to start
    tokio::time::sleep(Duration::from_millis(50)).await;

    // Create HTTP client
    let client = reqwest::Client::new();
    let url = format!("http://{addr}/mcp");

    // Send ping request
    let request = Request::new("ping", 1u64);
    let body = serde_json::to_string(&Message::Request(request))?;

    let result = timeout(
        Duration::from_secs(5),
        client
            .post(&url)
            .header("Content-Type", "application/json")
            .header(MCP_PROTOCOL_VERSION_HEADER, MCP_PROTOCOL_VERSION)
            .body(body)
            .send(),
    )
    .await;

    assert!(result.is_ok());
    let response = result??;
    assert_eq!(response.status(), 200);

    let body = response.text().await?;
    let msg: Message = serde_json::from_str(&body)?;
    assert!(msg.is_response());
    assert!(msg.as_response().ok_or("Expected response")?.is_success());
    Ok(())
}

#[tokio::test]
async fn test_http_initialize_handshake() -> Result<(), Box<dyn std::error::Error>> {
    let addr = get_available_addr().await?;
    let _server = spawn_test_server(addr).await;
    tokio::time::sleep(Duration::from_millis(50)).await;

    let client = reqwest::Client::new();
    let url = format!("http://{addr}/mcp");

    // Send initialize request
    let init_request = Request::with_params(
        "initialize",
        1u64,
        json!({
            "protocolVersion": MCP_PROTOCOL_VERSION,
            "capabilities": {},
            "clientInfo": {
                "name": "test-client",
                "version": "1.0.0"
            }
        }),
    );
    let body = serde_json::to_string(&Message::Request(init_request))?;

    let response = client
        .post(&url)
        .header("Content-Type", "application/json")
        .header(MCP_PROTOCOL_VERSION_HEADER, MCP_PROTOCOL_VERSION)
        .body(body)
        .send()
        .await?;

    assert_eq!(response.status(), 200);

    // Check for session ID header
    let session_id = response.headers().get(MCP_SESSION_ID_HEADER);
    assert!(session_id.is_some());

    let body = response.text().await?;
    let msg: Message = serde_json::from_str(&body)?;
    let resp = msg.as_response().ok_or("Expected response")?;
    assert!(resp.is_success());
    assert_eq!(resp.id, RequestId::Number(1));
    assert_eq!(
        resp.result.as_ref().ok_or("Expected result")?["protocolVersion"],
        MCP_PROTOCOL_VERSION
    );
    Ok(())
}

#[tokio::test]
async fn test_http_tools_list() -> Result<(), Box<dyn std::error::Error>> {
    let addr = get_available_addr().await?;
    let _server = spawn_test_server(addr).await;
    tokio::time::sleep(Duration::from_millis(50)).await;

    let client = reqwest::Client::new();
    let url = format!("http://{addr}/mcp");

    let request = Request::new("tools/list", 1u64);
    let body = serde_json::to_string(&Message::Request(request))?;

    let response = client
        .post(&url)
        .header("Content-Type", "application/json")
        .header(MCP_PROTOCOL_VERSION_HEADER, MCP_PROTOCOL_VERSION)
        .body(body)
        .send()
        .await?;

    assert_eq!(response.status(), 200);

    let body = response.text().await?;
    let msg: Message = serde_json::from_str(&body)?;
    let resp = msg.as_response().ok_or("Expected response")?;
    assert!(resp.is_success());
    let tools = resp.result.as_ref().ok_or("Expected result")?["tools"]
        .as_array()
        .ok_or("Expected array")?;
    assert!(tools.is_empty()); // Test server returns empty list
    Ok(())
}

#[tokio::test]
async fn test_http_method_not_found() -> Result<(), Box<dyn std::error::Error>> {
    let addr = get_available_addr().await?;
    let _server = spawn_test_server(addr).await;
    tokio::time::sleep(Duration::from_millis(50)).await;

    let client = reqwest::Client::new();
    let url = format!("http://{addr}/mcp");

    let request = Request::new("unknown/method", 1u64);
    let body = serde_json::to_string(&Message::Request(request))?;

    let response = client
        .post(&url)
        .header("Content-Type", "application/json")
        .header(MCP_PROTOCOL_VERSION_HEADER, MCP_PROTOCOL_VERSION)
        .body(body)
        .send()
        .await?;

    assert_eq!(response.status(), 200);

    let body = response.text().await?;
    let msg: Message = serde_json::from_str(&body)?;
    let resp = msg.as_response().ok_or("Expected response")?;
    assert!(resp.is_error());
    assert_eq!(resp.error.as_ref().ok_or("Expected value")?.code, -32601);
    Ok(())
}

#[tokio::test]
async fn test_http_parse_error() -> Result<(), Box<dyn std::error::Error>> {
    let addr = get_available_addr().await?;
    let _server = spawn_test_server(addr).await;
    tokio::time::sleep(Duration::from_millis(50)).await;

    let client = reqwest::Client::new();
    let url = format!("http://{addr}/mcp");

    // Send invalid JSON
    let response = client
        .post(&url)
        .header("Content-Type", "application/json")
        .header(MCP_PROTOCOL_VERSION_HEADER, MCP_PROTOCOL_VERSION)
        .body("not valid json")
        .send()
        .await?;

    assert_eq!(response.status(), 200);

    let body = response.text().await?;
    let json: serde_json::Value = serde_json::from_str(&body)?;
    assert_eq!(json["error"]["code"], -32700);
    Ok(())
}

#[tokio::test]
async fn test_http_multiple_requests() -> Result<(), Box<dyn std::error::Error>> {
    let addr = get_available_addr().await?;
    let _server = spawn_test_server(addr).await;
    tokio::time::sleep(Duration::from_millis(50)).await;

    let client = reqwest::Client::new();
    let url = format!("http://{addr}/mcp");

    // Send multiple sequential requests
    for i in 1..=5 {
        let request = Request::new("ping", i);
        let body = serde_json::to_string(&Message::Request(request))?;

        let response = client
            .post(&url)
            .header("Content-Type", "application/json")
            .header(MCP_PROTOCOL_VERSION_HEADER, MCP_PROTOCOL_VERSION)
            .body(body)
            .send()
            .await?;

        assert_eq!(response.status(), 200);

        let body = response.text().await?;
        let msg: Message = serde_json::from_str(&body)?;
        let resp = msg.as_response().ok_or("Expected response")?;
        assert!(resp.is_success());
        assert_eq!(resp.id, RequestId::Number(i));
    }
    Ok(())
}

#[tokio::test]
async fn test_http_notification() -> Result<(), Box<dyn std::error::Error>> {
    let addr = get_available_addr().await?;
    let _server = spawn_test_server(addr).await;
    tokio::time::sleep(Duration::from_millis(50)).await;

    let client = reqwest::Client::new();
    let url = format!("http://{addr}/mcp");

    // Send a notification (no response expected)
    let notification = mcpkit::protocol::Notification::new("notifications/initialized");
    let body = serde_json::to_string(&Message::Notification(notification))?;

    let response = client
        .post(&url)
        .header("Content-Type", "application/json")
        .header(MCP_PROTOCOL_VERSION_HEADER, MCP_PROTOCOL_VERSION)
        .body(body)
        .send()
        .await?;

    // Notifications get 202 Accepted with empty body
    assert_eq!(response.status(), 202);
    Ok(())
}

#[tokio::test]
async fn test_http_session_id_persistence() -> Result<(), Box<dyn std::error::Error>> {
    let addr = get_available_addr().await?;
    let _server = spawn_test_server(addr).await;
    tokio::time::sleep(Duration::from_millis(50)).await;

    let client = reqwest::Client::new();
    let url = format!("http://{addr}/mcp");

    // First request - get session ID
    let request = Request::new("ping", 1u64);
    let body = serde_json::to_string(&Message::Request(request))?;

    let response = client
        .post(&url)
        .header("Content-Type", "application/json")
        .header(MCP_PROTOCOL_VERSION_HEADER, MCP_PROTOCOL_VERSION)
        .body(body)
        .send()
        .await?;

    assert_eq!(response.status(), 200);
    let session_id = response
        .headers()
        .get(MCP_SESSION_ID_HEADER)
        .ok_or("Expected header")?
        .to_str()?
        .to_string();

    // Second request - include session ID
    let request = Request::new("ping", 2u64);
    let body = serde_json::to_string(&Message::Request(request))?;

    let response = client
        .post(&url)
        .header("Content-Type", "application/json")
        .header(MCP_PROTOCOL_VERSION_HEADER, MCP_PROTOCOL_VERSION)
        .header(MCP_SESSION_ID_HEADER, &session_id)
        .body(body)
        .send()
        .await?;

    assert_eq!(response.status(), 200);

    // Session ID should be preserved in response
    let response_session_id = response
        .headers()
        .get(MCP_SESSION_ID_HEADER)
        .ok_or("Expected header")?
        .to_str()?;
    assert_eq!(session_id, response_session_id);
    Ok(())
}

#[tokio::test]
async fn test_http_concurrent_requests() -> Result<(), Box<dyn std::error::Error>> {
    let addr = get_available_addr().await?;
    let _server = spawn_test_server(addr).await;
    tokio::time::sleep(Duration::from_millis(50)).await;

    let client = reqwest::Client::new();
    let url = format!("http://{addr}/mcp");

    // Send multiple concurrent requests
    let mut handles = Vec::new();
    for i in 1..=10 {
        let client = client.clone();
        let url = url.clone();
        handles.push(tokio::spawn(async move {
            let request = Request::new("ping", i);
            let body = serde_json::to_string(&Message::Request(request)).unwrap();

            let response = client
                .post(&url)
                .header("Content-Type", "application/json")
                .header(MCP_PROTOCOL_VERSION_HEADER, MCP_PROTOCOL_VERSION)
                .body(body)
                .send()
                .await
                .unwrap();

            assert_eq!(response.status(), 200);
            let body = response.text().await.unwrap();
            let msg: Message = serde_json::from_str(&body).unwrap();
            let resp = msg.as_response().unwrap();
            assert!(resp.is_success());
            i
        }));
    }

    // Wait for all requests to complete
    let mut completed = Vec::new();
    for handle in handles {
        completed.push(handle.await?);
    }

    assert_eq!(completed.len(), 10);
    Ok(())
}