Some checks failed
Pre-commit / run (ubuntu-latest) (push) Has been cancelled
Deploy Sphinx documentation to Pages / build_en (ubuntu-latest, 3.10) (push) Has been cancelled
Deploy Sphinx documentation to Pages / build_zh (ubuntu-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.12) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.12) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.12) (push) Has been cancelled
21 lines
587 B
Python
21 lines
587 B
Python
# -*- coding: utf-8 -*-
|
|
"""The MCP module in AgentScope, that provides fine-grained control over
|
|
the MCP servers."""
|
|
|
|
from ._client_base import MCPClientBase
|
|
from ._mcp_function import MCPToolFunction
|
|
from ._stateful_client_base import StatefulClientBase
|
|
from ._stdio_stateful_client import StdIOStatefulClient
|
|
from ._http_stateless_client import HttpStatelessClient
|
|
from ._http_stateful_client import HttpStatefulClient
|
|
|
|
|
|
__all__ = [
|
|
"MCPToolFunction",
|
|
"MCPClientBase",
|
|
"StatefulClientBase",
|
|
"StdIOStatefulClient",
|
|
"HttpStatelessClient",
|
|
"HttpStatefulClient",
|
|
]
|