We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/khengyun/notebooklm-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
exceptions.py•649 B
"""
Custom exceptions for NotebookLM MCP Server
"""
class NotebookLMError(Exception):
"""Base exception for all NotebookLM operations"""
pass
class AuthenticationError(NotebookLMError):
"""Raised when authentication fails"""
pass
class StreamingError(NotebookLMError):
"""Raised when streaming response handling fails"""
pass
class NavigationError(NotebookLMError):
"""Raised when browser navigation fails"""
pass
class ChatError(NotebookLMError):
"""Raised when chat operations fail"""
pass
class ConfigurationError(NotebookLMError):
"""Raised when configuration is invalid"""
pass