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
package system
import (
"github.com/emicklei/melrose/core"
"github.com/emicklei/melrose/dsl"
"github.com/emicklei/melrose/notify"
)
func TearDown(ctx core.Context) error {
dsl.StopAllPlayables(ctx)
ctx.Control().Reset()
ctx.Device().Close()
notify.PrintBye()
return nil
}