We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Saik0s/mcp-browser-use'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
exceptions.py•370 B
"""Custom exceptions for MCP browser-use server."""
class MCPBrowserUseError(Exception):
"""Base exception for MCP browser-use errors."""
pass
class LLMProviderError(MCPBrowserUseError):
"""Raised when LLM provider configuration is invalid."""
pass
class BrowserError(MCPBrowserUseError):
"""Raised when browser operations fail."""
pass