awaken-server 0.4.0

Multi-protocol HTTP server with SSE, mailbox, and protocol adapters for Awaken
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
//! MCP protocol end-to-end tests.
//!
//! Verifies the full flow: MCP client → JSON-RPC → McpServer → AgentMcpTool →
//! AgentRuntime → event collection → tool result response.

use async_trait::async_trait;
use awaken_contract::contract::content::ContentBlock;
use awaken_contract::contract::executor::{InferenceExecutionError, InferenceRequest};
use awaken_contract::contract::inference::{StopReason, StreamResult, TokenUsage};
use awaken_contract::registry_spec::AgentSpec;
use awaken_runtime::builder::AgentRuntimeBuilder;
use awaken_runtime::registry::traits::ModelBinding;
use awaken_server::app::{AppState, ServerConfig};
use awaken_server::routes::build_router;
use awaken_stores::memory::InMemoryStore;
use axum::body::to_bytes;
use axum::http::{Request, Response, StatusCode};
use serde_json::{Value, json};
use std::sync::Arc;
use tower::ServiceExt;

// ── Mock executor that returns a fixed text response ──

struct EchoExecutor;

#[async_trait]
impl awaken_contract::contract::executor::LlmExecutor for EchoExecutor {
    async fn execute(
        &self,
        request: InferenceRequest,
    ) -> Result<StreamResult, InferenceExecutionError> {
        // Echo back the last user message as assistant response.
        let user_text = request
            .messages
            .iter()
            .rev()
            .find_map(|m| {
                if m.role == awaken_contract::contract::message::Role::User {
                    Some(m.text())
                } else {
                    None
                }
            })
            .unwrap_or_default();

        Ok(StreamResult {
            content: vec![ContentBlock::text(format!("echo: {user_text}"))],
            tool_calls: vec![],
            usage: Some(TokenUsage::default()),
            stop_reason: Some(StopReason::EndTurn),
            has_incomplete_tool_calls: false,
        })
    }

    fn name(&self) -> &str {
        "echo"
    }
}

// ── App setup ──

fn make_mcp_app() -> axum::Router {
    let runtime = {
        let builder = AgentRuntimeBuilder::new()
            .with_model_binding(
                "test-model",
                ModelBinding {
                    provider_id: "mock".into(),
                    upstream_model: "mock-model".into(),
                },
            )
            .with_provider("mock", Arc::new(EchoExecutor))
            .with_agent_spec(AgentSpec {
                id: "echo".into(),
                model_id: "test-model".into(),
                system_prompt: "You are an echo bot".into(),
                max_rounds: 2,
                ..Default::default()
            });
        Arc::new(builder.build().expect("build runtime"))
    };
    let store = Arc::new(InMemoryStore::new());
    let mailbox_store = Arc::new(awaken_stores::InMemoryMailboxStore::new());
    let mailbox = Arc::new(awaken_server::mailbox::Mailbox::new(
        runtime.clone(),
        mailbox_store,
        store.clone(),
        "test".to_string(),
        awaken_server::mailbox::MailboxConfig::default(),
    ));
    let state = AppState::new(
        runtime.clone(),
        mailbox,
        store,
        runtime.resolver_arc(),
        ServerConfig::default(),
    );
    build_router(&state).with_state(state)
}

async fn mcp_post(
    app: &axum::Router,
    payload: Value,
    session_id: Option<&str>,
) -> Response<axum::body::Body> {
    let mut builder = Request::builder()
        .method("POST")
        .uri("/v1/mcp")
        .header("content-type", "application/json");
    if let Some(session_id) = session_id {
        builder = builder
            .header("MCP-Session-Id", session_id)
            .header("MCP-Protocol-Version", mcp::MCP_PROTOCOL_VERSION);
    }

    app.clone()
        .oneshot(
            builder
                .body(axum::body::Body::from(
                    serde_json::to_vec(&payload).unwrap(),
                ))
                .expect("request build"),
        )
        .await
        .expect("app should handle request")
}

async fn response_json(resp: Response<axum::body::Body>) -> (StatusCode, Value) {
    let status = resp.status();
    let content_type = resp
        .headers()
        .get("content-type")
        .and_then(|value| value.to_str().ok())
        .unwrap_or_default()
        .to_ascii_lowercase();
    let body = to_bytes(resp.into_body(), 1024 * 1024)
        .await
        .expect("body readable");
    let json = if content_type.starts_with("text/event-stream") {
        let text = String::from_utf8(body.to_vec()).expect("valid utf-8 sse body");
        text.split("\n\n")
            .filter_map(|event| {
                let payload = event
                    .lines()
                    .filter_map(|line| {
                        line.strip_prefix("data: ")
                            .or_else(|| line.strip_prefix("data:"))
                    })
                    .collect::<Vec<_>>()
                    .join("\n");
                if payload.trim().is_empty() {
                    None
                } else {
                    serde_json::from_str::<Value>(&payload).ok()
                }
            })
            .find(|value| value.get("id").is_some())
            .unwrap_or(json!(null))
    } else {
        serde_json::from_slice(&body).unwrap_or(json!(null))
    };
    (status, json)
}

async fn initialize_session(app: axum::Router) -> (axum::Router, String) {
    let init_response = mcp_post(
        &app,
        json!({
            "jsonrpc": "2.0",
            "method": "initialize",
            "params": {
                "protocolVersion": mcp::MCP_PROTOCOL_VERSION,
                "capabilities": {},
                "clientInfo": {"name": "test-client", "version": "1.0.0"}
            },
            "id": 1
        }),
        None,
    )
    .await;
    let session_id = init_response
        .headers()
        .get("MCP-Session-Id")
        .and_then(|value| value.to_str().ok())
        .expect("session id header")
        .to_string();
    let (_, init_json) = response_json(init_response).await;
    assert_eq!(
        init_json["result"]["protocolVersion"],
        mcp::MCP_PROTOCOL_VERSION
    );

    let initialized_response = mcp_post(
        &app,
        json!({
            "jsonrpc": "2.0",
            "method": "notifications/initialized"
        }),
        Some(&session_id),
    )
    .await;
    assert_eq!(initialized_response.status(), StatusCode::ACCEPTED);

    (app, session_id)
}

// ============================================================================
// Tests
// ============================================================================

#[tokio::test]
async fn mcp_initialize_returns_server_info() {
    let app = make_mcp_app();
    let (status, json) = response_json(
        mcp_post(
            &app,
            json!({
                "jsonrpc": "2.0",
                "method": "initialize",
                "params": {
                    "protocolVersion": mcp::MCP_PROTOCOL_VERSION,
                    "capabilities": {},
                    "clientInfo": {"name": "test-client", "version": "1.0.0"}
                },
                "id": 1
            }),
            None,
        )
        .await,
    )
    .await;

    assert_eq!(status, StatusCode::OK);
    assert!(json["result"]["protocolVersion"].is_string());
    assert_eq!(json["result"]["serverInfo"]["name"], "awaken-mcp");
}

#[tokio::test]
async fn mcp_tools_list_discovers_agents() {
    let (app, session_id) = initialize_session(make_mcp_app()).await;
    let (status, json) = response_json(
        mcp_post(
            &app,
            json!({
                "jsonrpc": "2.0",
                "method": "tools/list",
                "id": 2
            }),
            Some(&session_id),
        )
        .await,
    )
    .await;

    assert_eq!(status, StatusCode::OK);
    let tools = json["result"]["tools"].as_array().unwrap();
    assert_eq!(tools.len(), 1);
    assert_eq!(tools[0]["name"], "echo");
    assert!(
        tools[0]["description"]
            .as_str()
            .unwrap()
            .contains("echo bot")
    );

    // Verify schema
    let schema = &tools[0]["inputSchema"];
    assert_eq!(schema["type"], "object");
    assert!(schema["properties"]["message"].is_object());
    let required = schema["required"].as_array().unwrap();
    assert!(required.contains(&json!("message")));
}

#[tokio::test]
async fn mcp_tools_call_runs_agent_and_returns_text() {
    let (app, session_id) = initialize_session(make_mcp_app()).await;
    let (status, json) = response_json(
        mcp_post(
            &app,
            json!({
                "jsonrpc": "2.0",
                "method": "tools/call",
                "params": {
                    "name": "echo",
                    "arguments": {
                        "message": "hello world"
                    }
                },
                "id": 3
            }),
            Some(&session_id),
        )
        .await,
    )
    .await;

    assert_eq!(status, StatusCode::OK);

    // The response should contain the echoed text.
    let content = &json["result"]["content"];
    assert!(content.is_array(), "expected content array, got: {json}");
    let content_arr = content.as_array().unwrap();
    assert!(!content_arr.is_empty(), "content should not be empty");

    let text = content_arr[0]["text"].as_str().unwrap_or("");
    assert!(
        text.contains("echo: hello world"),
        "expected echo response, got: {text}"
    );

    // isError should be false.
    assert_eq!(json["result"]["isError"], false);
}

#[tokio::test]
async fn mcp_tools_call_unknown_tool_returns_error() {
    let (app, session_id) = initialize_session(make_mcp_app()).await;
    let (status, json) = response_json(
        mcp_post(
            &app,
            json!({
                "jsonrpc": "2.0",
                "method": "tools/call",
                "params": {
                    "name": "nonexistent",
                    "arguments": {
                        "message": "hello"
                    }
                },
                "id": 4
            }),
            Some(&session_id),
        )
        .await,
    )
    .await;

    assert_eq!(status, StatusCode::OK);
    // MCP returns isError=true for tool errors, not HTTP errors.
    assert_eq!(json["result"]["isError"], true);
}

#[tokio::test]
async fn mcp_tools_call_missing_message_returns_tool_error() {
    let (app, session_id) = initialize_session(make_mcp_app()).await;
    let (status, json) = response_json(
        mcp_post(
            &app,
            json!({
                "jsonrpc": "2.0",
                "method": "tools/call",
                "params": {
                    "name": "echo",
                    "arguments": {}
                },
                "id": 5
            }),
            Some(&session_id),
        )
        .await,
    )
    .await;

    assert_eq!(status, StatusCode::OK);
    assert_eq!(json["result"]["isError"], true);
    let text = json["result"]["content"][0]["text"].as_str().unwrap_or("");
    assert!(
        text.contains("message"),
        "error should mention 'message' param"
    );
}

#[tokio::test]
async fn mcp_ping_responds() {
    let (app, session_id) = initialize_session(make_mcp_app()).await;
    let (status, json) = response_json(
        mcp_post(
            &app,
            json!({
                "jsonrpc": "2.0",
                "method": "ping",
                "id": 6
            }),
            Some(&session_id),
        )
        .await,
    )
    .await;

    assert_eq!(status, StatusCode::OK);
    assert!(json["result"].is_object());
}

#[tokio::test]
async fn mcp_unknown_method_returns_error() {
    let (app, session_id) = initialize_session(make_mcp_app()).await;
    let (status, json) = response_json(
        mcp_post(
            &app,
            json!({
                "jsonrpc": "2.0",
                "method": "unknown/method",
                "id": 7
            }),
            Some(&session_id),
        )
        .await,
    )
    .await;

    assert_eq!(status, StatusCode::OK);
    assert!(json["error"].is_object());
    assert_eq!(json["error"]["code"], -32601);
}

// ── Stdio E2E ──

#[tokio::test]
async fn stdio_e2e_full_flow() {
    let runtime = {
        let builder = AgentRuntimeBuilder::new()
            .with_model_binding(
                "test-model",
                ModelBinding {
                    provider_id: "mock".into(),
                    upstream_model: "mock-model".into(),
                },
            )
            .with_provider("mock", Arc::new(EchoExecutor))
            .with_agent_spec(AgentSpec {
                id: "echo".into(),
                model_id: "test-model".into(),
                system_prompt: "You are an echo bot".into(),
                max_rounds: 2,
                ..Default::default()
            });
        Arc::new(builder.build().expect("build runtime"))
    };

    let input = concat!(
        "{\"jsonrpc\":\"2.0\",\"method\":\"initialize\",\"id\":1}\n",
        "{\"jsonrpc\":\"2.0\",\"method\":\"notifications/initialized\"}\n",
        "{\"jsonrpc\":\"2.0\",\"method\":\"tools/list\",\"id\":2}\n",
        "{\"jsonrpc\":\"2.0\",\"method\":\"tools/call\",\"params\":{\"name\":\"echo\",\"arguments\":{\"message\":\"hi\"}},\"id\":3}\n",
    );

    let mut output = Vec::new();
    awaken_server::protocols::mcp::stdio::serve_stdio_io(runtime, input.as_bytes(), &mut output)
        .await;

    let output_str = String::from_utf8(output).unwrap();
    let lines: Vec<Value> = output_str
        .trim()
        .lines()
        .filter_map(|l| serde_json::from_str(l).ok())
        .collect();

    // Should have responses for initialize(1), tools/list(2), tools/call(3).
    // Plus possibly logging notifications.
    let responses: Vec<&Value> = lines.iter().filter(|v| v.get("id").is_some()).collect();
    assert!(
        responses.len() >= 3,
        "expected at least 3 responses, got {}: {lines:?}",
        responses.len()
    );

    // Verify initialize response.
    let init = responses.iter().find(|v| v["id"] == 1).unwrap();
    assert!(init["result"]["protocolVersion"].is_string());

    // Verify tools/list response.
    let list = responses.iter().find(|v| v["id"] == 2).unwrap();
    let tools = list["result"]["tools"].as_array().unwrap();
    assert_eq!(tools.len(), 1);
    assert_eq!(tools[0]["name"], "echo");

    // Verify tools/call response — should contain echo text.
    let call = responses.iter().find(|v| v["id"] == 3).unwrap();
    let content = call["result"]["content"].as_array().unwrap();
    let text = content[0]["text"].as_str().unwrap_or("");
    assert!(
        text.contains("echo: hi"),
        "expected echo response, got: {text}"
    );

    // Check for logging notifications.
    let notifications: Vec<&Value> = lines
        .iter()
        .filter(|v| v.get("method").is_some() && v.get("id").is_none())
        .collect();
    // Should have at least one log notification from the tool call.
    let has_logging = notifications
        .iter()
        .any(|n| n["method"] == "notifications/message");
    assert!(
        has_logging,
        "expected logging notifications, got: {notifications:?}"
    );
}