11 lines
263 B
Python
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())
|