ferro-api-mcp 0.2.39

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

pub mod error;
pub mod http;
pub mod schema;
pub mod server;
pub mod service;
pub mod spec;
pub mod types;