We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chevyfsa/system-designer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
🎨 UML Diagram Generated (PLANTUML):
Model: Student Management System
Format: plantuml
Copy the markup below into your preferred UML tool:
---
@startuml
title Student Management System
note top of Student
A simple system for managing students and courses
end note
class Student {
-id: string
+name: string
+email: string
+enroll(course: Course): void
}
class Course {
-id: string
+title: string
+credits: number
+addStudent(student: Student): void
}
Student "1" --> "0..*" Course : enrolls in
@enduml
---