Initial commit: Speedtest MCP Server
This commit is contained in:
10
test_mcp.py
Normal file
10
test_mcp.py
Normal 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())
|
||||
Reference in New Issue
Block a user