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
//! AimDB MCP Server
//!
//! Model Context Protocol (MCP) server implementation for AimDB.
//! Enables Large Language Models to interact with running AimDB instances
//! for introspection, debugging, and monitoring.
//!
//! # Architecture
//!
//! ```text
//! LLM Host (VS Code/Claude)
//! ↓ stdio (JSON-RPC 2.0)
//! aimdb-mcp server
//! ↓ aimdb-client library
//! AimDB instances (Unix sockets)
//! ```
//!
//! # MCP Protocol
//!
//! - **Transport**: stdio with NDJSON
//! - **Protocol**: JSON-RPC 2.0
//! - **Version**: 2025-06-18
//! - **Capabilities**: Tools (8), Resources (5), Prompts (3)
pub use ;
pub use NotificationFileWriter;
pub use McpServer;
pub use StdioTransport;