From ai-frameworks
You now have full access to the LangGraph SDK via MCP tools in the `langchain-bridge` server.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ai-frameworks:langgraphThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You now have full access to the LangGraph SDK via MCP tools in the `langchain-bridge` server.
You now have full access to the LangGraph SDK via MCP tools in the langchain-bridge server.
| Tool | What it does |
|---|---|
mcp__langchain-bridge__langgraph_run | Build + run a LangGraph StateGraph inline. Supports answer or plan_answer graph shapes. |
mcp__langchain-bridge__langgraph_react_agent | Run a LangGraph ReAct agent with Tavily web search. Agent decides when to search. |
langgraph_run(steps="answer") — single-node graph, one LLM call. Fastest.langgraph_run(steps="plan_answer") — two-node graph: planner → answerer. Better for complex tasks.langgraph_react_agent — multi-turn ReAct loop with web search. Use when live data needed.langgraph_runsteps="answer":
START → [answerer] → END
steps="plan_answer":
START → [planner] → [answerer] → END
Both use ChatGroq (llama-3.3-70b) as the LLM node.
User: /langgraph run a simple graph to explain quantum computing
→ langgraph_run(query="Explain quantum computing", steps="answer")
User: /langgraph plan and answer: what are the best practices for building RAG systems
→ langgraph_run(query="Best practices for RAG systems", steps="plan_answer")
User: /langgraph research latest LangGraph features with web search
→ langgraph_react_agent(query="Latest LangGraph features and updates 2025")
npx claudepluginhub kushal9889/claude-plugins --plugin ai-frameworksCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.