Files
speedtest/test_mcp.py
2026-02-05 16:25:54 +00:00

11 lines
263 B
Python

import asyncio
from mcp_server import list_servers
async def main():
print("Searching for Singapore...")
result = await list_servers("Singapore")
print(result[:500] + "...") # Print first 500 chars
if __name__ == "__main__":
asyncio.run(main())