We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lesir831/bilibili-video-info-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•473 B
"""
Bilibili Video Info MCP Server
"""
import argparse
from .server import mcp
def main():
parser = argparse.ArgumentParser(description="Bilibili Video Info MCP Server")
parser.add_argument('transport', nargs='?', default='stdio', choices=['stdio', 'sse', 'streamable-http'],
help='Transport type (stdio, sse, or streamable-http)')
args = parser.parse_args()
mcp.run(transport=args.transport)
if __name__ == "__main__":
main()