We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TheLunarCompany/lunar'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
//go:build !pro
package runner
import "fmt"
type FreeRunner struct{}
func newRunner() (AsyncServiceI, error) {
return &FreeRunner{}, nil
}
func (r *FreeRunner) Run() error {
return fmt.Errorf("this module is not available in the community edition")
}
func (r *FreeRunner) Stop() {
// No-op for FreeRunner
}