Skip to main content
Glama

Hong Kong Transportation MCP Server

by hkopenai
server.py601 B
""" MCP Server module for transportation data in Hong Kong. This module provides the main server setup for the HK OpenAI Transportation MCP Server, including tools for fetching passenger statistics, bus routes, and land boundary wait times. """ from fastmcp import FastMCP from .tools import ( passenger_traffic, bus_kmb, land_custom_wait_time, ) def server(): """Create and configure the MCP server""" mcp = FastMCP(name="HK OpenAI transportation Server") passenger_traffic.register(mcp) bus_kmb.register(mcp) land_custom_wait_time.register(mcp) return mcp

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hkopenai/hk-transportation-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server