Skip to main content
Glama

MCP MySQL App

by zalab-inc
schema.prisma1.1 kB
datasource db { provider = "mysql" url = env("DATABASE_URL") } generator client { provider = "prisma-client-js" } enum PlanStatus { ACTIVE FINISHED } model Plan { planId Int @id @default(autoincrement()) name String description String? @db.Text status PlanStatus @default(ACTIVE) // Confidence confident Int uncertainties Uncertainty[] todos Todo[] @@map("plan") } model Uncertainty { uncertaintyId Int @id @default(autoincrement()) description String? @db.Text confidence Int actionsToResolve String? @db.Text actionsResult String? @db.Text planId Int plan Plan @relation(fields: [planId], references: [planId]) @@map("uncertainty") } model Todo { todoId Int @id @default(autoincrement()) description String @db.Text status TodoStatus @default(TODO) priority TodoPriority @default(MEDIUM) report String? @db.Text planId Int plan Plan @relation(fields: [planId], references: [planId]) @@map("todo") } enum TodoStatus { TODO IN_PROGRESS DONE HAS_ISSUE } enum TodoPriority { LOW MEDIUM HIGH CRITICAL }

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/zalab-inc/mcp-mysql-app'

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