Skip to main content
Glama
mjmorales

simple-mcp-runner

by mjmorales
version.go637 B
package cmd import ( "fmt" "runtime" "github.com/spf13/cobra" ) // versionCmd represents the version command. var versionCmd = &cobra.Command{ Use: "version", Short: "Print version information", Long: `Print detailed version information about the simple-mcp-runner binary.`, Run: func(cmd *cobra.Command, args []string) { fmt.Printf("simple-mcp-runner %s\n", Version) fmt.Printf(" Commit: %s\n", Commit) fmt.Printf(" Built: %s\n", BuildTime) fmt.Printf(" Go version: %s\n", runtime.Version()) fmt.Printf(" OS/Arch: %s/%s\n", runtime.GOOS, runtime.GOARCH) }, } func init() { rootCmd.AddCommand(versionCmd) }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mjmorales/simple-mcp-runner'

If you have feedback or need assistance with the MCP directory API, please join our Discord server