From ai-frameworks
You now have full access to the LangChain 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:langchainThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You now have full access to the LangChain SDK via MCP tools in the `langchain-bridge` server.
You now have full access to the LangChain SDK via MCP tools in the langchain-bridge server.
| Tool | What it does |
|---|---|
mcp__langchain-bridge__langchain_chain | Run a LangChain LCEL chain (prompt → LLM → output). Single call, fast. |
mcp__langchain-bridge__tavily_search | LangChain TavilySearch — raw web results as JSON |
When the user invokes /langchain, read their request and:
langchain_chain(question=..., system_prompt=...)tavily_search(query=...)"Summarise concisely in bullet points.""Classify the input into one of these categories: ...""Extract structured data as JSON.""Translate to Spanish."User: /langchain summarise this text: [text]
→ langchain_chain(question="Summarise: [text]", system_prompt="Summarise concisely in bullet points.")
User: /langchain search latest AI news
→ tavily_search(query="latest AI news 2025")
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub kushal9889/claude-plugins --plugin ai-frameworks