Connect to Origene MCP Server
CAMEL-AI toolkit that connects agents to an Origene MCP server, usable as an async context manager.
0.2.90Add to Favorites
Why it matters
Seamlessly interface with the Origene MCP server to retrieve and manage tools. This toolkit simplifies connection management, allowing for automatic setup and teardown.
Outcomes
What it gets done
Establish connection to Origene MCP server
Retrieve available tools from the server
Manage connection lifecycle automatically
Source
Get it from source
Spark does not host a copy of it.
Open sourceReports
Agent outcome reports
No reports yet
Overview
Origene Toolkit
A CAMEL-AI toolkit that connects agents to an Origene MCP server. It can be used as an async context manager so the connection opens and closes automatically around a block of code. Reach for it when a CAMEL-AI agent needs to connect to an Origene MCP server with automatic connect/disconnect lifecycle handling.
What it does
OrigeneToolkit is a CAMEL-AI toolkit that provides an interface for interacting with an Origene MCP server. It can be used as an async context manager for automatic connection management - the connection opens on entry and is automatically disconnected on exit.
Inputs and outputs
- Input:
config_dict(Dict) - configuration dictionary for the MCP server(s);timeout(Optional[float]) - connection timeout in seconds, defaulting to none. - Output: once connected, the toolkit's tools are available for the agent to call.
async with OrigeneToolkit(config_dict=config) as toolkit:
tools = toolkit.get_tools()
# Toolkit is automatically disconnected when exiting
Who it's for
Developers building CAMEL-AI agents who need to connect to an Origene MCP server with automatic connect/disconnect lifecycle handling.
Source code
OrigeneToolkit provides an interface for interacting with
Origene MCP server.
This toolkit can be used as an async context manager for automatic
connection management:
async with OrigeneToolkit(config_dict=config) as toolkit:
tools = toolkit.get_tools()
# Toolkit is automatically disconnected when exiting
Attributes:
config_dict (Dict): Configuration dictionary for MCP servers.
timeout (Optional[float]): Connection timeout in seconds.
(default: :obj:None)
FAQ
Common questions
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.