For more detailed usage information, please refer to our cookbook: Tools Cookbook

What is a Tool?

A Tool in CAMEL is a callable function with a name, description, input parameters, and an output type.
Tools act as the interface between agents and the outside world—think of them like OpenAI Functions you can easily convert, extend, or use directly.

What is a Toolkit?

A Toolkit is a curated collection of related tools designed to work together for a specific purpose.
CAMEL provides a range of built-in toolkits—covering everything from web search and data extraction to code execution, GitHub integration, and much more.

Get Started

Install Toolkits

To unlock advanced capabilities for your agents, install CAMEL’s extra tools package:

pip install ‘camel-ai[tools]’

A tool in CAMEL is just a FunctionTool—an interface any agent can call to run custom logic or access APIs.

Define a Custom Tool

You can easily create your own tools for any use case. Just write a Python function and wrap it using FunctionTool:

from camel.toolkits import FunctionTooldef add(a: int, b: int) -> int:
"""Adds two numbers."""
return a + badd_tool = FunctionTool(add)

Inspect your tool’s properties—such as its name, description, and OpenAI-compatible schema—using built-in methods:

print(add_tool.get_function_name())          # add
print(add_tool.get_function_description())   # Adds two numbers.
print(add_tool.get_openai_function_schema()) # OpenAI Functions schema
print(add_tool.get_openai_tool_schema())     # OpenAI Tool format

Using Toolkits

Toolkits group related tools for specialized tasks—search, math, or automation. Use built-in toolkits or build your own.

from camel.toolkits import SearchToolkit
toolkit = SearchToolkit()
tools = toolkit.get_tools()

You can also wrap toolkit methods as individual FunctionTools:

from camel.toolkits import FunctionTool, SearchToolkitgoogle_tool = FunctionTool(SearchToolkit().search_google)
wiki_tool = FunctionTool(SearchToolkit().search_wiki)

Passing Tools to ChatAgent

You can enhance any ChatAgent with custom or toolkit-powered tools. Just pass the tools during initialization:

from camel.agents import ChatAgenttool_agent = ChatAgent(
tools=tools,  # List of FunctionTools
)response = tool_agent.step(“A query related to the tool you added”)

Built-in Toolkits

CAMEL provides a variety of built-in toolkits that you can use right away. Here’s a comprehensive list of available toolkits:

ToolkitDescription
ArxivToolkitA toolkit for interacting with the arXiv API to search and download academic papers.
AskNewsToolkitA toolkit for fetching news, stories, and other content based on user queries using the AskNews API.
AudioAnalysisToolkitA toolkit for audio processing and analysis, including transcription and question answering about audio content.
BrowserToolkitA toolkit for browsing the web and interacting with web pages, including browser simulation and content extraction.
CodeExecutionToolkitA toolkit for code execution which can run code in various sandboxes including internal Python, Jupyter, Docker, subprocess, or e2b.
OpenAIImageToolkitA toolkit for image generation using OpenAI’s DALL-E model.
DappierToolkitA toolkit for searching real-time data and fetching AI recommendations across key verticals like News, Finance, Stock Market, Sports, Weather and more using the Dappier API.
DataCommonsToolkitA toolkit for querying and retrieving data from the Data Commons knowledge graph, including SPARQL queries, statistical time series data, and property analysis.
ExcelToolkitA toolkit for extracting and processing content from Excel files, including conversion to markdown tables.
FunctionToolA base toolkit for creating function-based tools that OpenAI chat models can call, with support for schema parsing and synthesis.
FileWriteToolA toolkit for creating, writing, and modifying text in files.
GitHubToolkitA toolkit for interacting with GitHub repositories, including retrieving issues and creating pull requests.
GoogleCalendarToolkitA toolkit for creating events, retrieving events, updating events, and deleting events from a Google Calendar
GoogleMapsToolkitA toolkit for accessing Google Maps services, including address validation, elevation data, and timezone information.
GoogleScholarToolkitA toolkit for retrieving information about authors and their publications from Google Scholar.
HumanToolkitA toolkit for facilitating human-in-the-loop interactions and feedback in AI systems.
ImageAnalysisToolkitA toolkit for comprehensive image analysis and understanding using vision-capable language models.
JinaRerankerToolkitA toolkit for reranking documents (text or images) based on their relevance to a given query using the Jina Reranker model.
LinkedInToolkitA toolkit for LinkedIn operations including creating posts, deleting posts, and retrieving user profile information.
MathToolkitA toolkit for performing basic mathematical operations such as addition, subtraction, and multiplication.
MCPToolkitA toolkit for interacting with external tools using the Model Context Protocol (MCP).
MemoryToolkitA toolkit for saving, loading, and clearing a ChatAgent’s memory.
MeshyToolkitA toolkit for working with 3D mesh data and operations.
MinerUToolkitA toolkit for extracting and processing document content using the MinerU API, with support for OCR, formula recognition, and table detection.
NetworkXToolkitA toolkit for graph operations and analysis using the NetworkX library.
NotionToolkitA toolkit for retrieving information from Notion pages and workspaces using the Notion API.
OpenAPIToolkitA toolkit for working with OpenAPI specifications and REST APIs.
OpenBBToolkitA toolkit for accessing and analyzing financial market data through the OpenBB Platform, including stocks, ETFs, cryptocurrencies, and economic indicators.
PPTXToolkitA toolkit for creating and manipulating PowerPoint (PPTX) files, including adding slides, text, and images.
PubMedToolkitA toolkit for interacting with PubMed’s E-utilities API to access MEDLINE data.
RedditToolkitA toolkit for Reddit operations including collecting top posts, performing sentiment analysis on comments, and tracking keyword discussions.
RetrievalToolkitA toolkit for retrieving information from local vector storage systems based on specified queries.
SearchToolkitA toolkit for performing web searches using various search engines like Google, DuckDuckGo, Wikipedia, Bing, BaiDu and Wolfram Alpha.
SemanticScholarToolkitA toolkit for interacting with the Semantic Scholar API to fetch paper and author data from academic publications.
SlackToolkitA toolkit for Slack operations including creating channels, joining channels, and managing channel membership.
StripeToolkitA toolkit for processing payments and managing financial transactions via Stripe.
SymPyToolkitA toolkit for performing symbolic computations using SymPy, including algebraic manipulation, calculus, and linear algebra.
TerminalToolkitA toolkit for terminal operations such as searching for files by name or content, executing shell commands, and managing terminal sessions across multiple operating systems.
TwitterToolkitA toolkit for Twitter operations including creating tweets, deleting tweets, and retrieving user profile information.
VideoAnalysisToolkitA toolkit for analyzing video content with vision-language models, including frame extraction and question answering about video content.
VideoDownloaderToolkitA toolkit for downloading videos and optionally splitting them into chunks, with support for various video services.
WeatherToolkitA toolkit for fetching weather data for cities using the OpenWeatherMap API.
WhatsAppToolkitA toolkit for interacting with the WhatsApp Business API, including sending messages, managing message templates, and accessing business profile information.
ZapierToolkitA toolkit for interacting with Zapier’s NLA API to execute actions through natural language commands and automate workflows.
KlavisToolkitA toolkit for interacting with Kavis AI’s API to create remote hosted production-ready MCP servers.

Using Toolkits as MCP Servers

MCP Servers in CAMEL

CAMEL supports the Model Context Protocol (MCP), letting you expose any toolkit as a standalone server. This enables distributed tool execution and seamless integration across multiple systems—clients can remotely discover and invoke tools via a consistent protocol.

What is MCP?

MCP (Model Context Protocol) is a unified protocol for connecting LLMs with external tools and services. In CAMEL, you can turn any toolkit into an MCP server, making its tools available for remote calls—ideal for building distributed, modular, and language-agnostic AI workflows.

Expose a Toolkit as an MCP Server

Any CAMEL toolkit can run as an MCP server. Here’s how you can start an ArXiv toolkit server from a script:

import argparse
import sys

from camel.toolkits import ArxivToolkit

if __name__ == "__main__":
    parser = argparse.ArgumentParser(
        description="Run Arxiv Toolkit with MCP server mode.",
        usage=f"python {sys.argv[0]} [--mode MODE] [--timeout TIMEOUT]",
    )
    parser.add_argument(
        "--mode",
        choices=["stdio", "sse", "streamable-http"],
        default="stdio",
        help="MCP server mode (default: 'stdio')",
    )
    parser.add_argument(
        "--timeout",
        type=float,
        default=None,
        help="Timeout for the MCP server (default: None)",
    )

    args = parser.parse_args()
    toolkit = ArxivToolkit(timeout=args.timeout)
    toolkit.run_mcp_server(mode=args.mode)

Supported modes:

  • stdio: Standard input/output (default)
  • sse: Server-Sent Events
  • streamable-http: Streamable HTTP

MCP Server Configuration

Define how to launch your MCP servers with a config file:

{
  "mcpServers": {
    "arxiv_toolkit": {
      "command": "python",
      "args": [
        "-m",
        "examples.mcp_arxiv_toolkit.arxiv_toolkit_server",
        "--timeout",
        "30"
      ]
    }
  }
}

Connect to MCP Servers as a Client

From your client application, you can connect to MCP servers and use their tools remotely:

import asyncio
from mcp.types import CallToolResult
from camel.toolkits.mcp_toolkit import MCPToolkit, MCPClient

async def run_example():
    mcp_toolkit = MCPToolkit(config_path="path/to/mcp_servers_config.json")
    await mcp_toolkit.connect()

    mcp_client: MCPClient = mcp_toolkit.servers[0]

    res = await mcp_client.list_mcp_tools()
    if isinstance(res, str):
        raise Exception(res)
    tools = [tool.name for tool in res.tools]
    print(f"Available tools: {tools}")

    result: CallToolResult = await mcp_client.session.call_tool(
        "tool_name", {"param1": "value1", "param2": "value2"}
    )
    print(result.content[0].text)

    await mcp_toolkit.disconnect()

if __name__ == "__main__":
    asyncio.run(run_example())

Benefits of MCP Servers

  • Distributed Execution: Run tools anywhere—across machines or containers.
  • Process Isolation: Each toolkit runs in its own process for reliability and security.
  • Resource Management: Allocate memory/CPU for heavy toolkits without impacting others.
  • Scalability: Scale specific toolkits up or down as your workload changes.
  • Language Interoperability: Implement MCP servers in any language that supports the protocol.

Best Practices for MCP Integration

  • Timeouts: Always set timeouts to prevent blocked operations.
  • Error Handling: Implement robust error and exception handling in both server and client code.
  • Resource Cleanup: Properly disconnect and free resources when finished.
  • Configuration: Use config files or environment variables for flexible deployment.
  • Monitoring: Add logging and health checks for production MCP deployments.

Conclusion

Tools—especially when deployed as MCP servers—are the bridge between CAMEL agents and the real world. With this architecture, you can empower agents to automate, fetch, compute, and integrate with almost any external system.