We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/eugeneyvt/logseq-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
types.ts•199 B
/**
* Shared Types
* Common types used across the application
*/
/**
* Tool result format for MCP
*/
export interface ToolResult {
content: Array<{
type: 'text';
text: string;
}>;
}