refactor: route all mcp operations through runtime pool

This commit is contained in:
lda
2026-06-08 18:29:22 +07:00 Verified
parent 929103219e
commit 0a8cc4190f
14 changed files with 961 additions and 30 deletions
+329 -2
View File
@@ -4,14 +4,19 @@ from contextlib import AsyncExitStack
from typing import Any
import pytest
from mcp import ClientResult
from mcp.client.session import ClientSession
from mcp.types import CallToolResult as RawCallToolResult
from mcp.types import (
ClientNotification,
ClientRequest,
ListPromptsResult,
ListResourcesResult,
ListToolsResult,
Prompt,
Resource,
TextContent,
Tool,
)
from pydantic import AnyUrl
@@ -167,6 +172,44 @@ class _FakeFactory(PersistentSessionFactory):
]
)
async def list_tools(self) -> ListToolsResult:
return ListToolsResult(
tools=[
Tool(
name="tool.runtime",
title="Runtime Tool",
description="Runtime-scoped tool.",
inputSchema={"type": "object"},
)
]
)
async def get_connection_metadata(self) -> dict[str, object]:
return {"server": "demo", "transport": "stdio"}
async def invoke_method(
self,
method: str,
params: dict[str, object] | None = None,
) -> dict[str, object]:
return {"echoed": (params or {}).get("text", "")}
async def send_notification(
self,
method: str,
params: dict[str, object] | None = None,
) -> None:
return None
async def send_request(
self,
request: ClientRequest,
result_type: type[ClientResult],
) -> ClientResult:
return ClientResult.model_validate(
{"jsonrpc": "2.0", "id": 1, "result": {}}
)
return _FakeClient() # type: ignore[return-value]
@@ -242,8 +285,10 @@ def test_persistent_session_public_runtime_exposes_safe_read_operations() -> Non
assert "get_prompt" in public_operations
assert "list_resources" in public_operations
assert "list_prompts" in public_operations
assert "invoke_method" not in public_operations
assert "send_notification" not in public_operations
assert "list_tools" in public_operations
assert "get_connection_metadata" in public_operations
assert "invoke_method" in public_operations
assert "send_notification" in public_operations
@pytest.mark.asyncio
@@ -347,6 +392,237 @@ async def test_persistent_session_factory_routes_resource_and_prompt_lists() ->
assert prompts[0].name == "prompt.runtime"
@pytest.mark.asyncio
async def test_persistent_session_factory_routes_list_tools_through_owner() -> None:
factory = _FakeFactory()
session = await factory.create(_connection(), None)
tools = await session.list_tools()
await session.close()
assert tools[0].name == "tool.runtime"
assert tools[0].description == "Runtime-scoped tool."
@pytest.mark.asyncio
async def test_persistent_session_factory_routes_metadata_through_owner() -> None:
factory = _FakeFactory()
session = await factory.create(_connection(), None)
metadata = await session.get_connection_metadata()
await session.close()
assert metadata["server"] == "demo"
assert metadata["transport"] == "stdio"
@pytest.mark.asyncio
async def test_persistent_session_factory_routes_invoke_method_through_owner() -> None:
factory = _FakeFactory()
session = await factory.create(_connection(), None)
result = await session.invoke_method("ping")
await session.close()
assert isinstance(result, dict)
@pytest.mark.asyncio
async def test_persistent_session_factory_routes_send_notification_through_owner() -> (
None
):
factory = _FakeFactory()
session = await factory.create(_connection(), None)
await session.send_notification("notifications/initialized")
await session.close()
@pytest.mark.asyncio
async def test_persistent_session_list_tools_callback() -> None:
async def list_tools_cb() -> list:
from wf_sources_mcp.catalog import DiscoveredTool
return [
DiscoveredTool(
name="cb_tool",
title=None,
description="Callback tool",
input_schema={"type": "object"},
output_schema={"type": "object"},
)
]
session = PersistentMcpSession(
connection=_connection(),
auth=None,
list_tools_callback=list_tools_cb,
)
tools = await session.list_tools()
assert tools[0].name == "cb_tool"
@pytest.mark.asyncio
async def test_persistent_session_get_connection_metadata_callback() -> None:
async def metadata_cb() -> dict[str, object]:
return {"server": "cb_server", "transport": "http"}
session = PersistentMcpSession(
connection=_connection(),
auth=None,
get_connection_metadata_callback=metadata_cb,
)
metadata = await session.get_connection_metadata()
assert metadata["server"] == "cb_server"
@pytest.mark.asyncio
async def test_persistent_session_invoke_method_callback() -> None:
async def invoke_cb(
method: str, params: dict[str, object] | None
) -> dict[str, object]:
return {"method": method, "params": params}
session = PersistentMcpSession(
connection=_connection(),
auth=None,
invoke_method_callback=invoke_cb,
)
result = await session.invoke_method("test.method", {"key": "val"})
assert result["method"] == "test.method"
assert result["params"] == {"key": "val"}
@pytest.mark.asyncio
async def test_persistent_session_send_notification_callback() -> None:
sent: list[tuple[str, dict[str, object] | None]] = []
async def notify_cb(method: str, params: dict[str, object] | None) -> None:
sent.append((method, params))
session = PersistentMcpSession(
connection=_connection(),
auth=None,
send_notification_callback=notify_cb,
)
await session.send_notification("test.event", {"data": 1})
assert sent == [("test.event", {"data": 1})]
@pytest.mark.asyncio
async def test_persistent_session_list_tools_client_fallback() -> None:
from mcp.types import ListToolsResult, Tool
class _MinimalClient:
async def list_tools(self) -> ListToolsResult:
return ListToolsResult(
tools=[
Tool(
name="client_tool",
description="Client tool",
inputSchema={"type": "object"},
)
]
)
session = PersistentMcpSession(
connection=_connection(),
auth=None,
client=_MinimalClient(), # type: ignore[arg-type]
)
tools = await session.list_tools()
assert tools[0].name == "client_tool"
@pytest.mark.asyncio
async def test_persistent_session_invoke_method_client_fallback() -> None:
from mcp import ClientResult
class _MinimalClient:
async def send_request(
self,
request: ClientRequest,
result_type: type[ClientResult],
) -> ClientResult:
return ClientResult.model_validate(
{"jsonrpc": "2.0", "id": 1, "result": {"tools": []}}
)
session = PersistentMcpSession(
connection=_connection(),
auth=None,
client=_MinimalClient(), # type: ignore[arg-type]
)
result = await session.invoke_method("tools/list")
assert result["result"]["tools"] == []
@pytest.mark.asyncio
async def test_persistent_session_send_notification_client_fallback() -> None:
sent: list[ClientNotification] = []
class _MinimalClient:
async def send_notification(self, notification: ClientNotification) -> None:
sent.append(notification)
session = PersistentMcpSession(
connection=_connection(),
auth=None,
client=_MinimalClient(), # type: ignore[arg-type]
)
await session.send_notification("notifications/initialized")
assert len(sent) == 1
@pytest.mark.asyncio
async def test_persistent_session_raises_without_tools_transport() -> None:
session = PersistentMcpSession(connection=_connection(), auth=None)
with pytest.raises(RuntimeError, match="no tools list transport"):
await session.list_tools()
@pytest.mark.asyncio
async def test_persistent_session_raises_without_invoke_transport() -> None:
session = PersistentMcpSession(connection=_connection(), auth=None)
with pytest.raises(RuntimeError, match="no method invoke transport"):
await session.invoke_method("test.ping")
@pytest.mark.asyncio
async def test_persistent_session_raises_without_notification_transport() -> None:
session = PersistentMcpSession(connection=_connection(), auth=None)
with pytest.raises(RuntimeError, match="no notification send transport"):
await session.send_notification("test.event")
@pytest.mark.asyncio
async def test_persistent_session_get_connection_metadata_local_fallback() -> None:
session = PersistentMcpSession(connection=_connection(), auth=None)
metadata = await session.get_connection_metadata()
assert metadata["server"] == "demo"
assert metadata["transport"] == "stdio"
@pytest.mark.asyncio
async def test_runtime_pool_reuses_session_for_resource_and_prompt_lists() -> None:
factory = _FakeFactory()
@@ -362,6 +638,57 @@ async def test_runtime_pool_reuses_session_for_resource_and_prompt_lists() -> No
assert factory.created_connections == [connection]
@pytest.mark.asyncio
async def test_runtime_pool_reuses_session_for_list_tools() -> None:
factory = _FakeFactory()
pool = McpRuntimePool(factory.create)
connection = _connection()
tools = await pool.list_tools(connection, None)
await pool.close_all()
assert tools[0].name == "tool.runtime"
assert factory.created_connections == [connection]
@pytest.mark.asyncio
async def test_runtime_pool_reuses_session_for_invoke_method() -> None:
factory = _FakeFactory()
pool = McpRuntimePool(factory.create)
connection = _connection()
result = await pool.invoke_method(connection, None, "ping")
await pool.close_all()
assert isinstance(result, dict)
assert factory.created_connections == [connection]
@pytest.mark.asyncio
async def test_runtime_pool_reuses_session_for_send_notification() -> None:
factory = _FakeFactory()
pool = McpRuntimePool(factory.create)
connection = _connection()
await pool.send_notification(connection, None, "notifications/initialized")
await pool.close_all()
assert factory.created_connections == [connection]
@pytest.mark.asyncio
async def test_runtime_pool_reuses_session_for_metadata() -> None:
factory = _FakeFactory()
pool = McpRuntimePool(factory.create)
connection = _connection()
metadata = await pool.get_connection_metadata(connection, None)
await pool.close_all()
assert metadata["server"] == "demo"
assert factory.created_connections == [connection]
def test_runtime_pool_satisfies_stateful_protocol_static_shape() -> None:
from wf_sources_mcp.sdk import (
PromptRuntime,
+153 -1
View File
@@ -4,7 +4,7 @@ from dataclasses import is_dataclass
from typing import cast
from wf_sources_mcp.auth import AuthRecord
from wf_sources_mcp.catalog import DiscoveredTool
from wf_sources_mcp.catalog import DiscoveredPrompt, DiscoveredResource, DiscoveredTool
from wf_sources_mcp.connections import McpSourceConnection
from wf_sources_mcp.sdk import BackendAdapter, ToolCallResult, ToolExecutor
from wf_sources_mcp.transports import StdioSourceTransport
@@ -36,6 +36,90 @@ class EchoAdapter:
return ToolCallResult(outcome="ok", output={"echoed": payload})
class _FullSurfaceAdapter:
"""Implements every MCP operation for protocol conformance tests."""
async def list_tools(
self,
connection: McpSourceConnection,
auth: AuthRecord | None,
) -> list[DiscoveredTool]:
return [
DiscoveredTool(
name="echo",
title=None,
description="Echo",
input_schema={"type": "object"},
output_schema={"type": "object"},
)
]
async def list_resources(
self,
connection: McpSourceConnection,
auth: AuthRecord | None,
) -> list[DiscoveredResource]:
return []
async def list_prompts(
self,
connection: McpSourceConnection,
auth: AuthRecord | None,
) -> list[DiscoveredPrompt]:
return []
async def get_connection_metadata(
self,
connection: McpSourceConnection,
auth: AuthRecord | None,
) -> dict[str, object]:
return {"server": "demo"}
async def read_resource(
self,
connection: McpSourceConnection,
auth: AuthRecord | None,
uri: str,
) -> dict[str, object]:
return {"contents": []}
async def get_prompt(
self,
connection: McpSourceConnection,
auth: AuthRecord | None,
prompt_name: str,
arguments: dict[str, str] | None = None,
) -> dict[str, object]:
return {"messages": []}
async def invoke_method(
self,
connection: McpSourceConnection,
auth: AuthRecord | None,
method: str,
params: dict[str, object] | None = None,
) -> dict[str, object]:
return {}
async def send_notification(
self,
connection: McpSourceConnection,
auth: AuthRecord | None,
method: str,
params: dict[str, object] | None = None,
) -> None:
return None
async def call_tool(
self,
connection: McpSourceConnection,
auth: AuthRecord | None,
tool_name: str,
payload: dict[str, object],
) -> ToolCallResult:
return ToolCallResult(outcome="ok", output={"echoed": payload})
def test_tool_call_result_is_slots_dataclass_with_empty_defaults() -> None:
result = ToolCallResult(outcome="ok")
@@ -77,6 +161,72 @@ async def test_tool_executor_protocol_can_describe_tool_calls() -> None:
assert result.output == {"echoed": {"message": "hello"}}
async def test_backend_adapter_protocol_full_operation_surface() -> None:
adapter = cast(BackendAdapter, _FullSurfaceAdapter())
conn = McpSourceConnection(
id="demo.default",
provider="demo",
account="default",
transport=StdioSourceTransport(command="echo"),
)
tools = await adapter.list_tools(conn, None)
resources = await adapter.list_resources(conn, None)
prompts = await adapter.list_prompts(conn, None)
metadata = await adapter.get_connection_metadata(conn, None)
read_result = await adapter.read_resource(conn, None, "test://x")
prompt_result = await adapter.get_prompt(conn, None, "prompt.summarize")
invoke_result = await adapter.invoke_method(conn, None, "ping")
await adapter.send_notification(conn, None, "test.notify")
call_result = await adapter.call_tool(conn, None, "echo", {"text": "hi"})
assert tools[0].name == "echo"
assert resources == []
assert prompts == []
assert metadata["server"] == "demo"
assert read_result == {"contents": []}
assert prompt_result == {"messages": []}
assert invoke_result == {}
assert call_result.outcome == "ok"
async def test_stateful_mcp_runtime_protocol_full_operation_surface() -> None:
from wf_sources_mcp.sdk import StatefulMcpRuntime
runtime = cast(StatefulMcpRuntime, _FullSurfaceAdapter())
conn = McpSourceConnection(
id="demo.default",
provider="demo",
account="default",
transport=StdioSourceTransport(command="echo"),
)
tools = await runtime.list_tools(conn, None)
resources = await runtime.list_resources(conn, None)
prompts = await runtime.list_prompts(conn, None)
metadata = await runtime.get_connection_metadata(conn, None)
read_result = await runtime.read_resource(conn, None, "test://x")
prompt_result = await runtime.get_prompt(conn, None, "prompt.summarize")
invoke_result = await runtime.invoke_method(conn, None, "ping")
await runtime.send_notification(conn, None, "test.notify")
call_result = await runtime.call_tool(conn, None, "echo", {"text": "hi"})
assert tools[0].name == "echo"
assert resources == []
assert prompts == []
assert metadata["server"] == "demo"
assert read_result == {"contents": []}
assert prompt_result == {"messages": []}
assert invoke_result == {}
assert call_result.outcome == "ok"
def test_mcp_source_operations_protocol_shape() -> None:
from wf_sources_mcp.sdk import McpSourceOperations
assert McpSourceOperations.__name__ == "McpSourceOperations"
def test_stateful_mcp_runtime_protocol_shape() -> None:
from wf_sources_mcp.sdk import StatefulMcpRuntime, ToolExecutor
@@ -86,6 +236,7 @@ def test_stateful_mcp_runtime_protocol_shape() -> None:
def test_stateful_runtime_protocol_slices_export() -> None:
from wf_sources_mcp.sdk import (
McpSourceOperations,
PromptRuntime,
ResourceRuntime,
StatefulMcpRuntime,
@@ -97,4 +248,5 @@ def test_stateful_runtime_protocol_slices_export() -> None:
assert ResourceRuntime.__name__ == "ResourceRuntime"
assert PromptRuntime.__name__ == "PromptRuntime"
assert ToolExecutor.__name__ == "ToolExecutor"
assert McpSourceOperations.__name__ == "McpSourceOperations"
assert StatefulMcpRuntime.__name__ == "StatefulMcpRuntime"