ferro_api_mcp/lib.rs
1//! # ferro-api-mcp
2//!
3//! Standalone MCP server that bridges OpenAPI specifications to Model Context
4//! Protocol tools.
5//!
6//! Loads an OpenAPI v3 document and exposes each operation as an MCP tool,
7//! translating JSON Schema parameters, constructing HTTP requests, and
8//! forwarding responses to the MCP client over stdio transport.
9
10pub mod error;
11pub mod http;
12pub mod schema;
13pub mod server;
14pub mod service;
15pub mod spec;
16pub mod types;