17 lines
317 B
Python
17 lines
317 B
Python
"""Example script that proves the static MCP tool works."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import asyncio
|
|
import json
|
|
|
|
from pyro_mcp.demo import run_demo
|
|
|
|
|
|
def main() -> None:
|
|
payload = asyncio.run(run_demo())
|
|
print(json.dumps(payload, indent=2, sort_keys=True))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|