File size: 1,065 Bytes
beb8990 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | # Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
"""
OpenEnv Wrapper - Generic MCP Integration Package
This package provides a fully generic OpenEnv integration that can be
copied to any MCP project. See README.md for usage instructions.
"""
from .config import MCP_NAME
from .data_models import MCPAction, MCPObservation, ListToolsAction, ToolCallAction
from .mcp_env_environment import MCPEnvironment
from .custom_http_server import MCPHTTPEnvServer
from .client import MCPEnvClient
__all__ = [
# Configuration
"MCP_NAME",
# Data Models
"MCPAction",
"MCPObservation",
"ListToolsAction",
"ToolCallAction",
# Environment
"MCPEnvironment",
# HTTP Server
"MCPHTTPEnvServer",
# Client
"MCPEnvClient",
]
__version__ = "1.0.0"
__author__ = "OpenEnv MCP Integration"
__description__ = "Generic OpenEnv wrapper for any MCP integration"
|