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
//! # 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:
//! - `tools`: Access to Rudof's tools for validation, querying, and RDF data operations.
//! - `prompts`: Guided templates for common validation workflows.
//! - `resources`: Access to up-to-date RDF data and supported formats for operations.
//! - `logging`: Real-time log notifications with level filtering.
//! - `completions`: Argument completions for tools and prompts.
//! - `pagination`: Support for paginated resource, prompt and tool listings with opaque cursors.
//!
//! ## 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;