Skip to main content
Glama
Insights.kt633 B
package maestro.utils interface Insights { fun report(insight: Insight) fun onInsightsUpdated(callback: (Insight) -> Unit) fun unregisterListener(callback: (Insight) -> Unit) } object NoopInsights: Insights { override fun report(insight: Insight) { /* no-op */ } override fun onInsightsUpdated(callback: (Insight) -> Unit) { /* no-op */ } override fun unregisterListener(callback: (Insight) -> Unit) { /* no-op */ } } data class Insight( val message: String, val level: Level ) { enum class Level { WARNING, INFO, NONE } }

Latest Blog Posts

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/mobile-dev-inc/Maestro'

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