We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/safedep/vet'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
package ai
import "github.com/spf13/cobra"
func NewAICommand() *cobra.Command {
cmd := &cobra.Command{
Use: "ai",
Short: "AI tools usage discovery and analysis",
Long: `Discover and audit AI tool usage across the local development environment.
AI coding agents, MCP servers, and extensions are often adopted by developers
without centralized visibility, creating Shadow AI. This command group helps
gain awareness of what AI tools are active, what permissions they hold, and
what external services they connect to.`,
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},
}
cmd.AddCommand(newDiscoverCommand())
return cmd
}