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
main.go•246 B
package main
import (
"fmt"
"os"
)
// see Makefile how to run this
func main() {
switch os.Args[1] {
case "grammar":
grammar()
case "snippets":
snippets()
case "menu":
postProcessMenus()
default:
fmt.Println("unknown cmd")
}
}