Skip to main content
Glama

rod-mcp

by go-rod
file.go345 B
package utils import ( "os" "path/filepath" ) func PathExists(path string) (bool, error) { _, err := os.Stat(path) if err == nil { return true, nil } if os.IsNotExist(err) { return false, nil } return false, err } func FileName(path string) string { _, file := filepath.Split(path) if file != "" { return file } return "" }

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/go-rod/rod-mcp'

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