We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/suckerfish/yttranscript_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•297 B
"""Tool implementations for YouTube transcript MCP server."""
# Handle both direct execution and module imports
try:
from .transcript_tools import register_transcript_tools
except ImportError:
from transcript_tools import register_transcript_tools
__all__ = ["register_transcript_tools"]