Skip to main content
Glama

SCAST MCP Server

class Anima { name: string; constructor(name: string) { this.name = name; } makeSound(): void { console.log("Some generic animal sound"); } } class Cat extends Anima { constructor(name: string) { super(name); // 调用父类的构造函数 } makeSound(): void { console.log("Meow"); // 重写父类的方法 } } const myCat = new Cat("Whiskers"); myCat.makeSound(); // 输出: Meow

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/davidkingzyb/SCAST'

If you have feedback or need assistance with the MCP directory API, please join our Discord server