asc-mcp 0.1.0

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

#![forbid(unsafe_code)]

pub mod auth;
pub mod client;
mod client_endpoints;
pub mod models;
pub mod tools;