We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/standardbeagle/brummer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
//go:build windows
// +build windows
package main
import (
"os"
"os/signal"
)
// setupSignalHandling sets up signal handling for Windows
func setupSignalHandling(sigChan chan os.Signal) {
// On Windows, only os.Interrupt (Ctrl+C) is reliably supported
signal.Notify(sigChan, os.Interrupt)
}