Skip to content

Tools

Agent.md provides three types of tools for your agents.

Built-in Tools

Always available, no configuration needed:

Learn more →

Custom Tools

Extend with Python:

# workspace/agents/tools/my_tool.py
from langchain_core.tools import tool

@tool
def my_tool(input: str) -> str:
    """What the tool does."""
    return f"Result: {input}"

Create custom tools →

MCP Integration

Use external MCP servers:

mcp:
  - fetch
  - github

MCP integration →