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
//! System tool schema definitions for MCP integration
//!
//! This module contains JSON schema definitions for system-level operations that provide
//! metadata about SCIM server capabilities, configuration, and available schemas.
//! These tools help AI agents understand the server environment before performing operations.
//!
//! # Architecture
//!
//! System tools provide:
//! - **Schema Discovery** - Available SCIM resource schemas and their structure
//! - **Capability Introspection** - Server features, versions, and operational limits
//! - **Configuration Metadata** - Multi-tenant support, resource types, and extensions
//!
//! # Available Tools
//!
//! - [`get_schemas_tool`] - Retrieve all SCIM schemas for data structure understanding
//! - [`get_server_info_tool`] - Get server capabilities, version, and operational metadata
//!
//! # Usage Pattern
//!
//! AI agents typically use these tools in discovery phase:
//! 1. Call `scim_server_info` to understand server capabilities
//! 2. Call `scim_get_schemas` to understand available data structures
//! 3. Proceed with resource operations based on discovered capabilities
//!
//! # No Parameters Required
//!
//! System tools generally require no input parameters as they provide
//! server-wide information that is not tenant or resource specific.
use ;
/// Schema definition for SCIM schemas retrieval tool
/// Schema definition for server information tool