Files
mcp-vultr/not_used/test_stdio_run.py

11 lines
317 B
Python

from src.vultr_mcp.server import mcp
if __name__ == "__main__":
# fastmcp likely exposes a run() method.
# Try calling it expecting it handles stdio by default or with arg.
try:
mcp.run()
except TypeError:
# If it doesn't accept run(), it might need distinct handling.
pass