| name | deepagents-langchain |
| description | DeepAgents — production-ready LangGraph agent framework by LangChain. Batteries-included: planning (write_todos), filesystem ops, shell execution, sub-agents with isolated context, auto context summarization. pip install deepagents → create_deep_agen |
deepagents-langchain
USE FOR:
- "production-ready agent with LangGraph"
- "batteries-included coding/research agent"
- "sub-agents with isolated context windows"
- "LangChain agent framework"
- "agent with planning + filesystem + shell"
- "MCP tools in LangGraph agent"
tags: [LangGraph, LangChain, agent, production, sub-agents, MCP, planning, filesystem, shell, open-source]
kind: framework
category: ai-agent-builder
What Is DeepAgents?
Production-ready, batteries-included LangGraph agent by LangChain.
No manual setup — create_deep_agent() returns a fully functional agent.
Quick Start
pip install deepagents
from deepagents import create_deep_agent
agent = create_deep_agent()
result = agent.invoke({
"messages": [{"role": "user", "content": "Research the latest AI agent frameworks and summarize"}]
})
print(result["messages"][-1].content)
Built-in Capabilities
| Capability | Tools Included |
|---|
| Planning | write_todos — task decomposition + progress tracking |
| Filesystem | read, write, edit, search files |
| Shell | execute commands (with sandboxing) |
| Sub-agents | delegate tasks with isolated context windows |
| Context | auto-summarization, large output → file handling |
Architecture (LangGraph)
agent = create_deep_agent()
for chunk in agent.stream({"messages": [("user", "task")]}):
print(chunk)
from langgraph.checkpoint.memory import MemorySaver
agent = create_deep_agent(checkpointer=MemorySaver())
Customization
from deepagents import create_deep_agent
from langchain_anthropic import ChatAnthropic
agent = create_deep_agent(
model=ChatAnthropic(model="claude-opus-4-6")
)
from langchain_core.tools import tool
@tool
def my_tool(query: str) -> str:
"""Custom tool description"""
return do_something(query)
agent = create_deep_agent(tools=[my_tool])
agent = create_deep_agent(
system_prompt="You are an expert financial analyst..."
)
MCP Integration
from langchain_mcp_adapters import MCPToolkit
toolkit = MCPToolkit(server_command=["npx", "gitnexus", "mcp"])
mcp_tools = toolkit.get_tools()
agent = create_deep_agent(tools=mcp_tools)
Sub-Agents Pattern
agent = create_deep_agent(
enable_subagents=True,
subagent_model=ChatAnthropic(model="claude-haiku-4-5-20251001")
)
Use Cases
- Research pipeline: fetch + summarize + synthesize across sources
- Code automation: read codebase → plan changes → edit files → run tests
- Data processing: ingest files → transform → write outputs
- Multi-step workflows: plan → delegate subtasks → aggregate results
vs. Other Agent Frameworks
| Feature | DeepAgents | OpenAlice | AutoHedge |
|---|
| Framework | LangGraph | Custom TS | Swarms |
| Built-in tools | ✓ (full) | ✓ (trading) | ✓ (trading) |
| Sub-agents | ✓ | ✗ | ✗ |
| MCP support | ✓ | ✓ (planned) | ✗ |
| Domain | General | Trading | Trading |
| Studio UI | ✓ LangGraph | ✓ Web | ✗ |