fastmcp/tests/server/test_server_safety.py
2026-05-14 22:09:39 -04:00

10 lines
246 B
Python

import pytest
from fastmcp import FastMCP
class TestMountSafety:
def test_self_mount_raises(self):
mcp = FastMCP("test")
with pytest.raises(ValueError, match="Cannot mount a server onto itself"):
mcp.mount(mcp)