Skip to main content

raps_cli/mcp/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2024-2025 Dmytro Yemelianov
3
4//! MCP (Model Context Protocol) Server module
5//!
6//! Provides AI assistants with direct access to Autodesk Platform Services
7//! through the Model Context Protocol. Enables natural language interaction
8//! with APS APIs for buckets, objects, translation, projects, and more.
9
10#[allow(dead_code)]
11pub mod auth_guidance;
12mod definitions;
13mod dispatch;
14pub mod server;
15pub mod tools;
16mod tools_acc;
17mod tools_admin;
18mod tools_dm;
19mod tools_misc;
20mod tools_oss;