Skip to main content
Glama
debug.rs584 B
use cyclone_core::DebugResultSuccess; use serde::{ Deserialize, Serialize, }; #[derive(Debug, Deserialize, PartialEq, Serialize)] #[serde(rename_all = "camelCase")] pub struct LangServerDebugResultSuccess { pub execution_id: String, pub output: serde_json::Value, pub error: Option<String>, } impl From<LangServerDebugResultSuccess> for DebugResultSuccess { fn from(value: LangServerDebugResultSuccess) -> Self { Self { execution_id: value.execution_id, output: value.output, error: value.error, } } }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'

If you have feedback or need assistance with the MCP directory API, please join our Discord server