Skip to content
LangChain

intent engineering for LangChain

com.seanwinslow/intent-engineering

Audit, scaffold, and triage agent intent specs against a 9-section template.

client:LangChain transport:stdio runtime:npm

Install intent engineering in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "intent-engineering": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@swins/intent-engineering-mcp"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

intent engineering in other clients