Skip to main content
Glama
emicklei

melrōse musical expression player

by emicklei
console.go713 B
package notify import ( "fmt" "io" "os" "strings" ) var debugEnabled = false func IsDebug() bool { return debugEnabled } func ToggleDebug() bool { debugEnabled = !debugEnabled return debugEnabled } var Console = ConsoleWriter{ StandardOut: os.Stdout, StandardError: os.Stderr, } type ConsoleWriter struct { StandardOut io.Writer StandardError io.Writer } func (c ConsoleWriter) Errorf(format string, args ...any) { if !strings.HasSuffix(format, "\n") { format += "\n" } fmt.Fprintf(c.StandardError, format, args...) } func (c ConsoleWriter) Warnf(format string, args ...any) { if !strings.HasSuffix(format, "\n") { format += "\n" } fmt.Fprintf(c.StandardError, format, args...) }

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/emicklei/melrose'

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