We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Falamarcao/mcp-selenium-grid'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
shutil.py•211 B
from shutil import which
def which_or_raise(name: str) -> str:
path: str | None = which(name)
if path is None:
raise FileNotFoundError(f"Executable '{name}' not found in PATH")
return path