The Agentis MCP Framework is a Python-based multi-agent framework designed for building powerful AI agents with seamless connectivity to MCP (Model Control Protocol) servers. It provides a flexible and intuitive API for creating custom agents, enabling multi-agent workflows, and accessing tools and resources via MCP servers.
To install the Agentis MCP Framework, use the following command:
pip install agentis-mcp
Here’s a quick example to get started with the Agentis MCP Framework:
import asyncio
from agentis_mcp import Agent, AgentContext
from agentis_mcp.config import load_config
async def main():
# Load the configuration from a YAML file
config = load_config("config.yaml")
# Create an agent context
context = AgentContext(config)
# Create an agent with the context
async with Agent(context) as agent:
# Run a task with the agent
result = await agent.run("What's the weather in San Francisco?")
print(result)
asyncio.run(main())
For detailed documentation, refer to the docs directory in the repository.
The Agentis MCP Framework is licensed under the APACHE 2.0 license.
The Agentis MCP Framework is a Python framework for creating AI agents that utilize MCP servers as tools. It is compatible with any MCP server and model provider, making it a versatile solution for building advanced AI workflows.
No releases published.
No packages published.