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
use anyhow::{Result, anyhow};
use serde_json::json;
use std::path::Path;
use std::sync::Arc;
use tokio::io::{AsyncBufReadExt, AsyncWriteExt, BufReader};
use tokio::sync::Mutex;
use uuid::Uuid;
use crate::{
ServerConfig,
embeddings::EmbeddingClient,
rag::RAGPipeline,
search::{HybridSearcher, SearchMode},
security::NamespaceAccessManager,
storage::StorageManager,
};
/// Validates a file path to prevent path traversal attacks.
/// Returns the canonicalized path if valid, or an error if the path is unsafe.
///
/// # Arguments
/// * `path_str` - The path string to validate
/// * `allowed_paths` - Whitelist of allowed paths. If empty, defaults to $HOME and cwd.
/// Supports ~ expansion and absolute paths.
fn validate_path(path_str: &str, allowed_paths: &[String]) -> Result<std::path::PathBuf> {
if path_str.is_empty() {
return Err(anyhow!("Path cannot be empty"));
}
// Expand ~ to home directory
let expanded = shellexpand::tilde(path_str).to_string();
// This IS the path validation/sanitization function - not a vulnerability
// nosemgrep: rust.actix.path-traversal.tainted-path.tainted-path
let path = Path::new(&expanded);
// Check for obvious path traversal patterns before canonicalization
let path_string = path_str.to_string();
if path_string.contains("..") {
return Err(anyhow!("Path traversal detected: '..' not allowed"));
}
// Canonicalize to resolve symlinks and get absolute path
let canonical = path
.canonicalize()
.map_err(|e| anyhow!("Cannot resolve path '{}': {}", path_str, e))?;
// Determine allowed base paths
let is_safe = if allowed_paths.is_empty() {
// Default behavior: allow paths under $HOME or current working directory
let home = std::env::var("HOME")
.or_else(|_| std::env::var("USERPROFILE"))
.map(std::path::PathBuf::from)
.ok();
let cwd = std::env::current_dir().ok();
home.as_ref()
.map(|h| canonical.starts_with(h))
.unwrap_or(false)
|| cwd
.as_ref()
.map(|c| canonical.starts_with(c))
.unwrap_or(false)
} else {
// Use configured whitelist
allowed_paths.iter().any(|allowed| {
// Expand ~ in allowed path
let expanded_allowed = shellexpand::tilde(allowed).to_string();
// nosemgrep: rust.actix.path-traversal.tainted-path.tainted-path
let allowed_path = Path::new(&expanded_allowed);
// Try to canonicalize the allowed path, fall back to expanded path if it doesn't exist
let canonical_allowed = allowed_path
.canonicalize()
.unwrap_or_else(|_| std::path::PathBuf::from(&expanded_allowed));
canonical.starts_with(&canonical_allowed)
})
};
if !is_safe {
let allowed_info = if allowed_paths.is_empty() {
"$HOME and current working directory".to_string()
} else {
format!("configured paths: {:?}", allowed_paths)
};
return Err(anyhow!(
"Access denied: path '{}' is outside allowed directories ({})",
path_str,
allowed_info
));
}
Ok(canonical)
}
pub struct MCPServer {
rag: Arc<RAGPipeline>,
/// Hybrid searcher for BM25 + vector fusion search
hybrid_searcher: Option<Arc<HybridSearcher>>,
/// Embedding client for generating query vectors
embedding_client: Arc<Mutex<EmbeddingClient>>,
max_request_bytes: usize,
allowed_paths: Vec<String>,
access_manager: Arc<NamespaceAccessManager>,
}
impl MCPServer {
pub async fn run_stdio(self) -> Result<()> {
let stdin = tokio::io::stdin();
let mut stdout = tokio::io::stdout();
let mut reader = BufReader::new(stdin);
let mut line = String::new();
// Read newline-delimited JSON-RPC (standard MCP transport)
loop {
line.clear();
let n = reader.read_line(&mut line).await?;
if n == 0 {
break; // EOF
}
let trimmed = line.trim();
if trimmed.is_empty() {
continue; // Skip empty lines
}
// Check size limit
if trimmed.len() > self.max_request_bytes {
let err = json!({
"jsonrpc": "2.0",
"error": {"code": -32600, "message": format!("Request too large: {} bytes (max {})", trimmed.len(), self.max_request_bytes)},
"id": serde_json::Value::Null
});
let payload = serde_json::to_string(&err)?;
stdout.write_all(payload.as_bytes()).await?;
stdout.write_all(b"\n").await?;
stdout.flush().await?;
continue;
}
let request: serde_json::Value = match serde_json::from_str(trimmed) {
Ok(req) => req,
Err(e) => {
let err = json!({
"jsonrpc": "2.0",
"error": {"code": -32700, "message": format!("Parse error: {}", e)},
"id": serde_json::Value::Null
});
let payload = serde_json::to_string(&err)?;
stdout.write_all(payload.as_bytes()).await?;
stdout.write_all(b"\n").await?;
stdout.flush().await?;
continue;
}
};
let response = self.handle_request(request).await;
let payload = serde_json::to_string(&response)?;
stdout.write_all(payload.as_bytes()).await?;
stdout.write_all(b"\n").await?;
stdout.flush().await?;
}
Ok(())
}
pub async fn run(self) -> Result<()> {
self.run_stdio().await
}
pub async fn handle_request(&self, request: serde_json::Value) -> serde_json::Value {
let method = request["method"].as_str().unwrap_or("");
let id = request["id"].clone();
let result = match method {
"initialize" => json!({
"protocolVersion": "2024-11-05",
"serverInfo": {
"name": "rmcp-memex",
"version": env!("CARGO_PKG_VERSION")
},
"capabilities": {
"tools": {},
"resources": {}
}
}),
"tools/list" => json!({
"tools": [
{
"name": "health",
"description": "Health/status of rmcp-memex server",
"inputSchema": {
"type": "object",
"properties": {},
"required": []
}
},
{
"name": "rag_index",
"description": "Index a document for RAG",
"inputSchema": {
"type": "object",
"properties": {
"path": {"type": "string"},
"namespace": {"type": "string"}
},
"required": ["path"]
}
},
{
"name": "rag_index_text",
"description": "Index raw text for RAG/memory",
"inputSchema": {
"type": "object",
"properties": {
"text": {"type": "string"},
"id": {"type": "string"},
"namespace": {"type": "string"},
"metadata": {"type": "object"}
},
"required": ["text"]
}
},
{
"name": "rag_search",
"description": "Search documents using RAG",
"inputSchema": {
"type": "object",
"properties": {
"query": {"type": "string"},
"k": {"type": "integer", "default": 10},
"namespace": {"type": "string"},
"mode": {"type": "string", "enum": ["vector", "bm25", "hybrid"], "default": "hybrid", "description": "Search mode: vector (semantic), bm25 (keyword), hybrid (both)"}
},
"required": ["query"]
}
},
{
"name": "memory_upsert",
"description": "Upsert a text chunk into vector memory. If the namespace is protected, provide the access token.",
"inputSchema": {
"type": "object",
"properties": {
"namespace": {"type": "string"},
"id": {"type": "string"},
"text": {"type": "string"},
"metadata": {"type": "object"},
"token": {"type": "string", "description": "Access token for protected namespaces"}
},
"required": ["namespace", "id", "text"]
}
},
{
"name": "memory_get",
"description": "Get a stored chunk by namespace + id. If the namespace is protected, provide the access token.",
"inputSchema": {
"type": "object",
"properties": {
"namespace": {"type": "string"},
"id": {"type": "string"},
"token": {"type": "string", "description": "Access token for protected namespaces"}
},
"required": ["namespace", "id"]
}
},
{
"name": "memory_search",
"description": "Semantic search within a namespace. If the namespace is protected, provide the access token.",
"inputSchema": {
"type": "object",
"properties": {
"namespace": {"type": "string"},
"query": {"type": "string"},
"k": {"type": "integer", "default": 5},
"mode": {"type": "string", "enum": ["vector", "bm25", "hybrid"], "default": "hybrid", "description": "Search mode: vector (semantic), bm25 (keyword), hybrid (both)"},
"token": {"type": "string", "description": "Access token for protected namespaces"}
},
"required": ["namespace", "query"]
}
},
{
"name": "memory_delete",
"description": "Delete a chunk by namespace + id. If the namespace is protected, provide the access token.",
"inputSchema": {
"type": "object",
"properties": {
"namespace": {"type": "string"},
"id": {"type": "string"},
"token": {"type": "string", "description": "Access token for protected namespaces"}
},
"required": ["namespace", "id"]
}
},
{
"name": "memory_purge_namespace",
"description": "Delete all chunks in a namespace. If the namespace is protected, provide the access token.",
"inputSchema": {
"type": "object",
"properties": {
"namespace": {"type": "string"},
"token": {"type": "string", "description": "Access token for protected namespaces"}
},
"required": ["namespace"]
}
},
{
"name": "namespace_create_token",
"description": "Create an access token for a namespace. Once created, the namespace will require this token for access.",
"inputSchema": {
"type": "object",
"properties": {
"namespace": {"type": "string", "description": "The namespace to protect with a token"},
"description": {"type": "string", "description": "Optional description for the token"}
},
"required": ["namespace"]
}
},
{
"name": "namespace_revoke_token",
"description": "Revoke the access token for a namespace, making it publicly accessible again.",
"inputSchema": {
"type": "object",
"properties": {
"namespace": {"type": "string", "description": "The namespace to remove token protection from"}
},
"required": ["namespace"]
}
},
{
"name": "namespace_list_protected",
"description": "List all namespaces that have token protection enabled.",
"inputSchema": {
"type": "object",
"properties": {},
"required": []
}
},
{
"name": "namespace_security_status",
"description": "Check if namespace security (token-based access control) is enabled.",
"inputSchema": {
"type": "object",
"properties": {},
"required": []
}
}
]
}),
"tools/call" => {
let tool_name = request["params"]["name"].as_str().unwrap_or("");
let args = &request["params"]["arguments"];
match tool_name {
"health" => {
let status = json!({
"version": env!("CARGO_PKG_VERSION"),
"db_path": self.rag.storage().lance_path(),
"backend": "mlx",
"mlx_server": self.rag.mlx_connected_to(),
});
json!({
"content": [{"type": "text", "text": serde_json::to_string(&status).unwrap_or_default()}]
})
}
"rag_index" => {
let path_str = args["path"].as_str().unwrap_or("");
let namespace = args["namespace"].as_str();
// Validate path to prevent path traversal attacks
let validated_path = match validate_path(path_str, &self.allowed_paths) {
Ok(p) => p,
Err(e) => {
return json!({
"jsonrpc": "2.0",
"error": {"code": -32602, "message": e.to_string()},
"id": id
});
}
};
match self.rag.index_document(&validated_path, namespace).await {
Ok(_) => json!({
"content": [{"type": "text", "text": format!("Indexed: {}", path_str)}]
}),
Err(e) => json!({
"error": {"message": e.to_string()}
}),
}
}
"rag_index_text" => {
let text = args["text"].as_str().unwrap_or("").to_string();
let namespace = args["namespace"].as_str();
let metadata = args.get("metadata").cloned().unwrap_or_else(|| json!({}));
let id = args
.get("id")
.and_then(|v| v.as_str().map(|s| s.to_string()))
.unwrap_or_else(|| Uuid::new_v4().to_string());
match self
.rag
.index_text(namespace, id.clone(), text, metadata)
.await
{
Ok(returned_id) => json!({
"content": [{"type": "text", "text": format!("Indexed text with id {}", returned_id)}]
}),
Err(e) => json!({
"error": {"message": e.to_string()}
}),
}
}
"rag_search" => {
let query = args["query"].as_str().unwrap_or("");
let k = args["k"].as_u64().unwrap_or(10) as usize;
let namespace = args["namespace"].as_str();
let mode = match args["mode"].as_str() {
Some("vector") => SearchMode::Vector,
Some("bm25") | Some("keyword") => SearchMode::Keyword,
_ => SearchMode::Hybrid, // default to hybrid
};
// Use hybrid search if available and mode is not pure vector
if mode != SearchMode::Vector
&& let Some(ref hybrid) = self.hybrid_searcher
{
// Generate query embedding
let query_embedding = match self
.embedding_client
.lock()
.await
.embed(query)
.await
{
Ok(emb) => emb,
Err(e) => {
return json!({
"jsonrpc": "2.0",
"error": {"code": -32603, "message": format!("Embedding failed: {}", e)},
"id": id
});
}
};
match hybrid
.search(query, query_embedding, namespace, k, None)
.await
{
Ok(results) => {
// Convert HybridSearchResult to JSON with scores
let results_json: Vec<serde_json::Value> = results.iter().map(|r| json!({
"id": r.id,
"namespace": r.namespace,
"document": r.document,
"combined_score": r.combined_score,
"vector_score": r.vector_score,
"bm25_score": r.bm25_score,
"metadata": r.metadata,
"layer": r.layer.as_ref().map(|l| format!("{:?}", l)),
"keywords": r.keywords
})).collect();
return json!({
"jsonrpc": "2.0",
"result": {
"content": [{
"type": "text",
"text": serde_json::to_string(&results_json).unwrap_or_default()
}]
},
"id": id
});
}
Err(e) => {
return json!({
"jsonrpc": "2.0",
"error": {"code": -32603, "message": format!("Hybrid search failed: {}", e)},
"id": id
});
}
}
}
// Fall through to vector search if hybrid not available
// Fallback to vector-only search
match self.rag.search_inner(namespace, query, k).await {
Ok(results) => json!({
"content": [{
"type": "text",
"text": serde_json::to_string(&results).unwrap_or_default()
}]
}),
Err(e) => json!({
"error": {"message": e.to_string()}
}),
}
}
"memory_upsert" => {
let namespace = args["namespace"].as_str().unwrap_or("default");
let token = args["token"].as_str();
// Verify namespace access
if let Err(e) = self.access_manager.verify_access(namespace, token).await {
return json!({
"jsonrpc": "2.0",
"error": {"code": -32603, "message": e.to_string()},
"id": id
});
}
let id_str = args["id"].as_str().unwrap_or("").to_string();
let text = args["text"].as_str().unwrap_or("").to_string();
let metadata = args.get("metadata").cloned().unwrap_or_else(|| json!({}));
match self
.rag
.memory_upsert(namespace, id_str.clone(), text, metadata)
.await
{
Ok(_) => json!({
"content": [{"type": "text", "text": format!("Upserted {}", id_str)}]
}),
Err(e) => json!({
"error": {"message": e.to_string()}
}),
}
}
"memory_get" => {
let namespace = args["namespace"].as_str().unwrap_or("default");
let token = args["token"].as_str();
// Verify namespace access
if let Err(e) = self.access_manager.verify_access(namespace, token).await {
return json!({
"jsonrpc": "2.0",
"error": {"code": -32603, "message": e.to_string()},
"id": id
});
}
let id_str = args["id"].as_str().unwrap_or("");
match self.rag.memory_get(namespace, id_str).await {
Ok(Some(doc)) => json!({
"content": [{"type": "text", "text": serde_json::to_string(&doc).unwrap_or_default()}]
}),
Ok(None) => json!({
"content": [{"type": "text", "text": "Not found"}]
}),
Err(e) => json!({
"error": {"message": e.to_string()}
}),
}
}
"memory_search" => {
let namespace = args["namespace"].as_str().unwrap_or("default");
let token = args["token"].as_str();
// Verify namespace access
if let Err(e) = self.access_manager.verify_access(namespace, token).await {
return json!({
"jsonrpc": "2.0",
"error": {"code": -32603, "message": e.to_string()},
"id": id
});
}
let query = args["query"].as_str().unwrap_or("");
let k = args["k"].as_u64().unwrap_or(5) as usize;
let mode = match args["mode"].as_str() {
Some("vector") => SearchMode::Vector,
Some("bm25") | Some("keyword") => SearchMode::Keyword,
_ => SearchMode::Hybrid, // default to hybrid
};
// Use hybrid search if available and mode is not pure vector
if mode != SearchMode::Vector
&& let Some(ref hybrid) = self.hybrid_searcher
{
let query_embedding = match self
.embedding_client
.lock()
.await
.embed(query)
.await
{
Ok(emb) => emb,
Err(e) => {
return json!({
"jsonrpc": "2.0",
"error": {"code": -32603, "message": format!("Embedding failed: {}", e)},
"id": id
});
}
};
match hybrid
.search(query, query_embedding, Some(namespace), k, None)
.await
{
Ok(results) => {
let results_json: Vec<serde_json::Value> = results
.iter()
.map(|r| {
json!({
"id": r.id,
"namespace": r.namespace,
"text": r.document,
"score": r.combined_score,
"vector_score": r.vector_score,
"bm25_score": r.bm25_score,
"metadata": r.metadata
})
})
.collect();
return json!({
"jsonrpc": "2.0",
"result": {
"content": [{
"type": "text",
"text": serde_json::to_string(&results_json).unwrap_or_default()
}]
},
"id": id
});
}
Err(e) => {
return json!({
"jsonrpc": "2.0",
"error": {"code": -32603, "message": format!("Hybrid search failed: {}", e)},
"id": id
});
}
}
}
// Fallback to vector-only search
match self.rag.memory_search(namespace, query, k).await {
Ok(results) => json!({
"content": [{
"type": "text",
"text": serde_json::to_string(&results).unwrap_or_default()
}]
}),
Err(e) => json!({
"error": {"message": e.to_string()}
}),
}
}
"memory_delete" => {
let namespace = args["namespace"].as_str().unwrap_or("default");
let token = args["token"].as_str();
// Verify namespace access
if let Err(e) = self.access_manager.verify_access(namespace, token).await {
return json!({
"jsonrpc": "2.0",
"error": {"code": -32603, "message": e.to_string()},
"id": id
});
}
let id_str = args["id"].as_str().unwrap_or("");
match self.rag.memory_delete(namespace, id_str).await {
Ok(deleted) => json!({
"content": [{"type": "text", "text": format!("Deleted {} rows", deleted)}]
}),
Err(e) => json!({
"error": {"message": e.to_string()}
}),
}
}
"memory_purge_namespace" => {
let namespace = args["namespace"].as_str().unwrap_or("default");
let token = args["token"].as_str();
// Verify namespace access
if let Err(e) = self.access_manager.verify_access(namespace, token).await {
return json!({
"jsonrpc": "2.0",
"error": {"code": -32603, "message": e.to_string()},
"id": id
});
}
match self.rag.purge_namespace(namespace).await {
Ok(deleted) => json!({
"content": [{"type": "text", "text": format!("Purged namespace '{}', removed {} rows", namespace, deleted)}]
}),
Err(e) => json!({
"error": {"message": e.to_string()}
}),
}
}
"namespace_create_token" => {
let namespace = args["namespace"].as_str().unwrap_or("");
let description = args["description"].as_str().map(|s| s.to_string());
if namespace.is_empty() {
json!({
"error": {"message": "Namespace is required"}
})
} else {
match self
.access_manager
.create_token(namespace, description)
.await
{
Ok(token) => json!({
"content": [{
"type": "text",
"text": format!(
"Token created for namespace '{}'. Store this token securely - it won't be shown again!\n\nToken: {}",
namespace, token
)
}]
}),
Err(e) => json!({
"error": {"message": e.to_string()}
}),
}
}
}
"namespace_revoke_token" => {
let namespace = args["namespace"].as_str().unwrap_or("");
if namespace.is_empty() {
json!({
"error": {"message": "Namespace is required"}
})
} else {
match self.access_manager.revoke_token(namespace).await {
Ok(true) => json!({
"content": [{"type": "text", "text": format!("Token revoked for namespace '{}'. The namespace is now publicly accessible.", namespace)}]
}),
Ok(false) => json!({
"content": [{"type": "text", "text": format!("No token found for namespace '{}'.", namespace)}]
}),
Err(e) => json!({
"error": {"message": e.to_string()}
}),
}
}
}
"namespace_list_protected" => {
let protected = self.access_manager.list_protected_namespaces().await;
if protected.is_empty() {
json!({
"content": [{"type": "text", "text": "No namespaces are currently protected with tokens."}]
})
} else {
let list: Vec<serde_json::Value> = protected
.iter()
.map(|(ns, created_at, desc)| {
json!({
"namespace": ns,
"created_at": created_at,
"description": desc
})
})
.collect();
json!({
"content": [{"type": "text", "text": serde_json::to_string_pretty(&list).unwrap_or_default()}]
})
}
}
"namespace_security_status" => {
let enabled = self.access_manager.is_enabled();
let protected_count =
self.access_manager.list_protected_namespaces().await.len();
json!({
"content": [{
"type": "text",
"text": format!(
"Namespace security: {}\nProtected namespaces: {}\n\nNote: When security is disabled, all namespaces are accessible without tokens.",
if enabled { "ENABLED" } else { "DISABLED" },
protected_count
)
}]
})
}
_ => {
return json!({
"jsonrpc": "2.0",
"error": {"code": -32601, "message": "Unknown tool"},
"id": id
});
}
}
}
_ => {
return json!({
"jsonrpc": "2.0",
"error": {"code": -32601, "message": "Unknown method"},
"id": id
});
}
};
json!({
"jsonrpc": "2.0",
"id": id,
"result": result
})
}
}
pub async fn create_server(config: ServerConfig) -> Result<MCPServer> {
// Initialize embedding client with config-driven provider cascade
let embedding_client = EmbeddingClient::new(&config.embeddings).await?;
tracing::info!(
"Embedding: Connected to {}",
embedding_client.connected_to()
);
let embedding_client = Arc::new(Mutex::new(embedding_client));
let db_path = shellexpand::tilde(&config.db_path).to_string();
let storage = Arc::new(StorageManager::new(config.cache_mb, &db_path).await?);
// NOTE: Removed ensure_collection() - table opens lazily on first use
// This speeds up MCP server startup significantly
let rag = Arc::new(RAGPipeline::new(embedding_client.clone(), storage.clone()).await?);
// Initialize hybrid searcher if mode is not vector-only
let hybrid_searcher = if config.hybrid.mode != crate::search::SearchMode::Vector {
tracing::info!("Hybrid search: mode={:?}", config.hybrid.mode);
Some(Arc::new(
HybridSearcher::new(storage, config.hybrid.clone()).await?,
))
} else {
tracing::info!("Hybrid search: disabled (vector-only mode)");
None
};
// Initialize namespace access manager
let access_manager = NamespaceAccessManager::new(config.security.clone());
access_manager.init().await?;
let access_manager = Arc::new(access_manager);
Ok(MCPServer {
rag,
hybrid_searcher,
embedding_client,
max_request_bytes: config.max_request_bytes,
allowed_paths: config.allowed_paths,
access_manager,
})
}