from mcp.server.fastmcp import FastMCP
from country_server_mcp.tools import countries, states
mcp = FastMCP("Country & States Server")
# Register tools from modules
countries.register(mcp)
states.register(mcp)
def cli():
mcp.run()
if __name__ == "__main__":
cli()