We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/babelcloud/gru-sandbox'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
adb_expose_list.go•384 B
package cmd
import (
"github.com/babelcloud/gbox/packages/cli/internal/adb_expose"
"github.com/spf13/cobra"
)
// ExecuteAdbExposeList lists all exposed ADB ports using the new client-server architecture
func ExecuteAdbExposeList(cmd *cobra.Command, opts *AdbExposeListOptions) error {
// Use the new client-server architecture
return adb_expose.ListCommand(opts.OutputFormat)
}