We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mcp-bridge/local-filesystem'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
exceptions.py•504 B
"""Custom exceptions for LocalFS operations."""
class PathSecurityError(Exception):
"""Raised when path is outside sandbox or contains traversal attempts."""
pass
class ReadOnlyError(Exception):
"""Raised when attempting write operation in read-only mode."""
pass
class FileSizeLimitError(Exception):
"""Raised when file exceeds maximum allowed size."""
pass
class DepthLimitError(Exception):
"""Raised when search depth exceeds maximum allowed depth."""
pass