Initial commit: Speedtest MCP Server

This commit is contained in:
wartana
2026-02-05 16:25:38 +00:00
commit c0baf28992
5 changed files with 204 additions and 0 deletions

10
test_mcp.py Normal file
View File

@@ -0,0 +1,10 @@
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())