Skip to main content
Glama
emicklei

melrōse musical expression player

by emicklei
util.go527 B
package calc import "github.com/emicklei/melrose/core" func resolveInt(v any) (int, bool) { if i, ok := v.(int); ok { return i, true } if v, ok := v.(core.HasValue); ok { return resolveInt(v.Value()) } return 0, false } func resolveFloatWithInt(v any) (float64, bool) { if f, ok := v.(float64); ok { return f, true } if i, ok := v.(int); ok { return float64(i), true } if v == nil { return 0.0, true } if v, ok := v.(core.HasValue); ok { return resolveFloatWithInt(v.Value()) } return 0.0, false }

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