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
code_view.ts•323 B
export interface CodeView {
language: CodeLanguage;
code: string | null;
message: string | null;
func: string | null;
}
// FIXME(nick): use this type in the CodeView interface once we want to dynamically check the code language type.
export type CodeLanguage = "diff" | "json" | "unknown" | "yaml" | "javascript";