Spaces:
				
			
			
	
			
			
		Sleeping
		
	
	
	
			
			
	
	
	
	
		
		
		Sleeping
		
	| from mcp.server.fastmcp import FastMCP | |
| from typing import List | |
| import math | |
| import statistics | |
| mcp = FastMCP(name="MathServer", stateless_http=True) | |
| def add_two(a: int, b: int) -> int: | |
| return a + b | |
| def subtract_two(a: int, b: int) -> int: | |
| return a - b | |
| def multiply(a: int, b: int) -> int: | |
| return a * b | |
| def divide(a: float, b: float) -> float: | |
| if b == 0: | |
| raise ValueError("Division by zero is not allowed") | |
| return a / b | |
