We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lishenxydlgzs/aws-athena-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
export interface QueryInput {
database: string;
query: string;
maxRows?: number;
timeoutMs?: number;
}
export interface QueryResult {
columns: string[];
rows: Record<string, unknown>[];
queryExecutionId: string;
bytesScanned: number;
executionTime: number;
}
export interface QueryStatus {
state: string;
stateChangeReason?: string;
statistics?: {
dataScannedInBytes: number;
engineExecutionTimeInMillis: number;
};
substatementType?: string;
}
export interface AthenaError {
message: string;
code: string;
queryExecutionId?: string;
}