Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop AbstractAsyncContextManager for proper type hint to BaseSession #257

Merged

Conversation

Kludex
Copy link
Member

@Kludex Kludex commented Mar 11, 2025

You can see that session assumes ClientSession type now.

from mcp.client.session import ClientSession


async def main():
    async with ClientSession() as session:
        await session.initialize()

The real problem is that AbstractAsyncContextManager is a generic, so it expects some type as an argument. We can't really add BaseClient as that type, because the return type from the ClientSession __aexit__ is not BaseClient, it's actually ClientSession.

@Kludex Kludex changed the title Drop AbstractAsyncContextManager for proper type hints Drop AbstractAsyncContextManager for proper type hint to BaseSession Mar 11, 2025
@@ -8,6 +8,7 @@
import httpx
from anyio.streams.memory import MemoryObjectReceiveStream, MemoryObjectSendStream
from pydantic import BaseModel
from typing_extensions import Self
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't this in typing as well?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

my bad, it's in typing in 3.11 not in 3.10

@dsp-ant dsp-ant merged commit 3e0ab1e into modelcontextprotocol:main Mar 11, 2025
@Kludex Kludex deleted the drop-abstract-async-context-manager branch March 11, 2025 13:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants