We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tradermonty/finviz-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
exceptions.py•425 B
"""
Custom exceptions for Finviz MCP Server
"""
class ToolError(Exception):
"""Base exception for tool-related errors."""
pass
class ValidationError(ToolError):
"""Exception raised for input validation errors."""
pass
class NetworkError(ToolError):
"""Exception raised for network-related errors."""
pass
class DataError(ToolError):
"""Exception raised for data processing errors."""
pass