We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Keeper-Security/keeper-mcp-golang-docker'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
package main
import (
"os"
"github.com/keeper-security/ksm-mcp/cmd/ksm-mcp/commands"
)
// Version is the current version of ksm-mcp
// This must match the git tag when creating releases
const Version = "v2.3.0"
func main() {
// Set version for commands
commands.SetVersion(Version)
if err := commands.Execute(); err != nil {
os.Exit(1)
}
}