MCP integration & custom tools
Connect to external tools and services using Model Context Protocol (MCP). Give your agents direct access to GitHub, Slack, Notion, databases, and more without custom integrations.
- GitHub, Slack, Notion support
- Database connectors
- No custom integration code

from opper_agents import Agent, mcp, MCPServerConfig
# Configure MCP servers
github_mcp = MCPServerConfig(
name="github",
transport="streamable-http",
url="your-mcp-url"
)
# Create agent with MCP tools
agent = Agent(
name="DevOpsBot",
tools=[mcp(github_mcp)]
)
await agent.process("Create PR and notify team")



