Actualizacion para mcp

This commit is contained in:
2025-05-16 02:12:33 +02:00
parent 95c1762ca7
commit 9db2f70009
13 changed files with 597 additions and 247 deletions
+9
View File
@@ -0,0 +1,9 @@
import asyncio
from fastmcp.client import Client
async def main():
async with Client("http://127.0.0.1:4300") as client:
is_alive = await client.ping()
print("Ping exitoso:", is_alive)
asyncio.run(main())