Alias streamable-http as http

This commit is contained in:
Jeremiah Lowin 2025-06-22 20:00:11 -04:00
commit ffe0c92d63
17 changed files with 118 additions and 39 deletions

View file

@ -32,7 +32,7 @@ def roll_dice(n_dice: int) -> list[int]:
return [random.randint(1, 6) for _ in range(n_dice)]
if __name__ == "__main__":
mcp.run(transport="streamable-http", port=8000)
mcp.run(transport="http", port=8000)
```
## Connect to Claude Code