Skip to main content
Glama
emicklei

melrōse musical expression player

by emicklei
version.go503 B
package server import ( "encoding/json" "net/http" "github.com/emicklei/melrose/core" "github.com/emicklei/melrose/dsl" ) type versionInfo struct { APIVersion string SyntaxVersion string BuildTag string } func (l *LanguageServer) versionHandler(w http.ResponseWriter, r *http.Request) { w.Header().Set("content-type", "application/json") v := versionInfo{ APIVersion: "v1", SyntaxVersion: dsl.SyntaxVersion, BuildTag: core.BuildTag, } json.NewEncoder(w).Encode(v) }

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