mirror of
https://github.com/usestrix/strix.git
synced 2026-08-25 20:32:38 +02:00
23 lines
482 B
Python
23 lines
482 B
Python
"""Generic MCP client: connect MCP servers and expose their tools."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from strix.tools.mcp.client import connect_mcp_servers
|
|
from strix.tools.mcp.config import (
|
|
AwsSigV4Auth,
|
|
BearerAuth,
|
|
McpAuth,
|
|
McpConnectionConfig,
|
|
)
|
|
from strix.tools.mcp.loader import load_user_mcp_configs
|
|
|
|
|
|
__all__ = [
|
|
"AwsSigV4Auth",
|
|
"BearerAuth",
|
|
"McpAuth",
|
|
"McpConnectionConfig",
|
|
"connect_mcp_servers",
|
|
"load_user_mcp_configs",
|
|
]
|