We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/trtd56/AskOnSlackMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
human.ts•264 B
/**
* Abstract interface for human interaction.
*/
export abstract class Human {
/**
* Ask a question to a human.
*
* @param question - The question to ask
* @returns The human's response
*/
abstract ask(question: string): Promise<string>;
}