refactor(mcp): modernize imports to use pry_mcp sub-package directly

- api.py, cli.py, mcp_sse.py now import from pry_mcp

- tests import from pry_mcp (snapshot tests still verify mcp_production shim)
This commit is contained in:
Crypto Rug Munch 2026-07-03 15:18:11 +02:00
parent f7f9fa0c88
commit 4d2603cdd5
5 changed files with 5 additions and 5 deletions

View file

@ -29,7 +29,7 @@ from typing import Any
from fastapi import HTTPException, Request, Response
from fastapi.responses import StreamingResponse
from mcp_production import (
from pry_mcp import (
register_mcp_notification_observer,
unregister_mcp_notification_observer,
)