agtrace-sdk 0.7.1

Public SDK for building observability tools on top of agtrace
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! MCP (Model Context Protocol) server implementation.
//!
//! This module provides an embeddable MCP server that allows AI agents
//! to query their own execution history via JSON-RPC over stdio.

pub mod error;
mod server;
mod tools;

pub use error::{ErrorCode, McpError};
pub use server::{AgTraceServer, run_server};