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
//! # Rudof MCP Service
//!
//! This module implements a [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server
//! for the Rudof library using the [rmcp](https://crates.io/crates/rmcp) Rust SDK.
//!
//! ## Overview
//!
//! The MCP server exposes Rudof's library capabilities to AI assistants and other MCP clients.
//!
//! ## MCP Capabilities
//!
//! This server advertises the following MCP capabilities:
//!
//! | Capability | Feature |
//! |---------------|------------------------------------------------------|
//! | `tools` | 10+ tools for validation, querying, and data ops |
//! | `prompts` | Guided templates for common validation workflows |
//! | `resources` | Access to current RDF data in multiple formats |
//! | `logging` | Real-time log notifications with level filtering |
//! | `completions` | Argument completions for tools and prompts |
//! | `tasks` | Async task support for long-running operations |
//!
//! ## Docker State Persistence
//!
//! When running in Docker MCP Registry (ephemeral containers), the server supports
//! state persistence via Docker volumes. Mount a volume to `/app/state/` and the
//! server will automatically save/load RDF data between container restarts.
pub use RudofMcpService;
pub use annotated_tools;