├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── REFACTOR_NOTES.md ├── client.py ├── comprehensive_test.py ├── config.py ├── google_open_api.yaml ├── mcp_server.py ├── mcp_server_refactored.py ├── requirements.txt ├── test_api_key.py ├── test_event_loop_cleanup.py ├── test_logging_config.py ├── test_refactored.py ├── test_server_logging.py └── tests └── test_get_current_time.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/README.md -------------------------------------------------------------------------------- /REFACTOR_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/REFACTOR_NOTES.md -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/client.py -------------------------------------------------------------------------------- /comprehensive_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/comprehensive_test.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/config.py -------------------------------------------------------------------------------- /google_open_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/google_open_api.yaml -------------------------------------------------------------------------------- /mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/mcp_server.py -------------------------------------------------------------------------------- /mcp_server_refactored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/mcp_server_refactored.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/test_api_key.py -------------------------------------------------------------------------------- /test_event_loop_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/test_event_loop_cleanup.py -------------------------------------------------------------------------------- /test_logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/test_logging_config.py -------------------------------------------------------------------------------- /test_refactored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/test_refactored.py -------------------------------------------------------------------------------- /test_server_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/test_server_logging.py -------------------------------------------------------------------------------- /tests/test_get_current_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RmMargt/searchAPI-mcp/HEAD/tests/test_get_current_time.py --------------------------------------------------------------------------------