Intercept for LangChain
io.github.bighippoman/intercept-mcp
Give your AI the ability to read the web. Fetches URLs as clean markdown with multi-tier fallback.
client:LangChain
transport:stdio
runtime:npm
Install Intercept in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"intercept-mcp": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "intercept-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs