We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mcpjungle/MCPJungle'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
package main
import (
"errors"
"fmt"
"os"
"github.com/mcpjungle/mcpjungle/cmd"
)
func main() {
if err := cmd.Execute(); err != nil {
if !errors.Is(err, cmd.ErrSilent) {
_, _ = fmt.Fprintln(os.Stderr, err)
}
os.Exit(1)
}
}