systemprompt-api 0.15.0

Axum-based HTTP server and API gateway for systemprompt.io AI governance infrastructure. Exposes governed agents, MCP, A2A, and admin endpoints with rate limiting and RBAC.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `OpenID` Connect dynamic client-configuration endpoint (RFC 7592).
//!
//! Exposes the read, update, and delete operations a registered client uses to
//! manage its own configuration via its registration access token.

pub(crate) mod delete;
pub(crate) mod get;
mod update;
pub mod validation;

pub use delete::delete_client_configuration;
pub use get::get_client_configuration;
pub use update::update_client_configuration;