Skip to main content
Glama

get_scraper_status

Check the health and configuration of the Bing Flights scraper to verify operational status and supported features.

Instructions

Check scraper health and configuration.

Returns: Dictionary with scraper status information including: - status: Current status ("healthy") - version: Scraper version - capabilities: Supported features

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'get_scraper_status' MCP tool, decorated with @mcp.tool() for registration. It returns a hardcoded dictionary with scraper status, version, and capabilities.
    @mcp.tool()
    def get_scraper_status() -> dict:
        """Check scraper health and configuration.
    
        Returns:
            Dictionary with scraper status information including:
            - status: Current status ("healthy")
            - version: Scraper version
            - capabilities: Supported features
        """
        return {
            "status": "healthy",
            "version": "1.0.0",
            "capabilities": {
                "one_way_search": True,
                "round_trip_search": True,
                "cabin_classes": [
                    "economy", "premium_economy", "business", "first"
                ],
                "max_results": 50,
                "headless_mode": True
            }
        }
Install Server

Other Tools

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/chonseng/bing-flights-mcp'

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