chore: move ws support to feat-ws

This commit is contained in:
Sun-ZhenXing
2025-07-21 11:44:33 +08:00
parent 2b48a92596
commit 7941617a8f
6 changed files with 9 additions and 171 deletions

View File

@@ -1,9 +1,10 @@
from operator import add, mul, sub, truediv
from ..config import settings
from ..lib.better_mcp import BetterFastMCP
from mcp.server.fastmcp import FastMCP
mcp = BetterFastMCP("math", settings=settings.instructions)
from ..config import settings
mcp = FastMCP("math", settings=settings.instructions)
@mcp.tool()