Skip to main content
Glama

MCP Server GDB

error.rs974 B
use anyhow; use thiserror::Error; use tokio::task::JoinError; /// Application error types #[derive(Error, Debug)] pub enum AppError { #[error("GDB error: {0}")] GDBError(String), #[error("GDB timeout")] GDBTimeout, #[error("GDB busy")] GDBBusy, #[error("GDB quit")] GDBQuit, #[error("Parse error: {0}")] ParseError(String), #[error("IO error: {0}")] IoError(#[from] std::io::Error), #[error("Resource not found: {0}")] NotFound(String), #[error("Invalid argument: {0}")] InvalidArgument(String), #[error("Parse int error: {0}")] ParseIntError(#[from] std::num::ParseIntError), #[error("Parse Json error: {0}")] ParseJsonError(#[from] serde_json::error::Error), #[error("Anyhow error: {0}")] AnyhowError(#[from] anyhow::Error), #[error("Task join error: {0}")] JoinError(#[from] JoinError), } /// Application result type pub type AppResult<T> = Result<T, AppError>;

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/pansila/mcp_server_gdb'

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