Skip to main content

asc_mcp/
lib.rs

1//! # asc-mcp
2//!
3//! MCP server for the Apple App Store Connect API.
4//!
5//! This crate provides:
6//! - JWT authentication for the ASC API ([`auth`])
7//! - A typed HTTP client with rate-limiting and pagination ([`client`])
8//! - Domain endpoint methods ([`client_endpoints`])
9//! - JSON:API data models ([`models`])
10//! - An MCP tool server ([`tools`])
11
12#![forbid(unsafe_code)]
13
14pub mod auth;
15pub mod client;
16mod client_endpoints;
17pub mod models;
18pub mod tools;