11 lines
317 B
Python
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
|