We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/betterhyq/Mermaid-Grammer-Inspector'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
classDiagram
class Animal {
+String name
+int age
+makeSound()
+eat()
}
class Dog {
+String breed
+bark()
+wagTail()
}
class Cat {
+String color
+meow()
+purr()
}
class Bird {
+String species
+fly()
+sing()
}
Animal <|-- Dog
Animal <|-- Cat
Animal <|-- Bird
class Owner {
+String name
+feedAnimal(Animal)
}
Owner --> Animal : owns