14 lines
296 B
Python
14 lines
296 B
Python
"""MCP server definitions and the internal aggregator app."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from beaver_gateway.mcp.types import (
|
|
HttpMcp,
|
|
McpServer,
|
|
McpServerT,
|
|
PythonToolMcp,
|
|
StdioMcp,
|
|
)
|
|
|
|
__all__ = ["HttpMcp", "McpServer", "McpServerT", "PythonToolMcp", "StdioMcp"]
|