We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sapientpants/deepsource-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
common.ts•466 B
/**
* @fileoverview Common models shared across different domains
* This module defines common interfaces and types used throughout the application.
*/
/**
* Base interface for all response formats
* @public
*/
export interface ApiResponse {
/** Whether the response is an error */
isError?: boolean;
/** Content blocks of the response */
content: Array<{
/** Type of content */
type: 'text';
/** Text content */
text: string;
}>;
}