langgraph-tools

Installation
SKILL.md

LangGraph Tool Calling

Integrate tool calling into LangGraph workflows.

Basic Tool Binding

from langchain_core.tools import tool
from langchain_anthropic import ChatAnthropic

@tool
def search_database(query: str) -> str:
    """Search the database for information."""
    return db.search(query)
Installs
6
GitHub Stars
212
First Seen
Feb 6, 2026
langgraph-tools — yonatangross/orchestkit