We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/uberr2000/mcp_demo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
BaseTool.js•440 B
export class BaseTool {
get name() {
throw new Error("Method not implemented.");
}
get description() {
throw new Error("Method not implemented.");
}
get inputSchema() {
throw new Error("Method not implemented.");
}
validateInput(input) {
throw new Error("Method not implemented.");
}
async execute(params) {
throw new Error("Method not implemented.");
}
}