three.ws Vision for LangChain
io.github.nirholas/vision-mcp
Image understanding for AI agents — analyze and describe any image via the three.ws pipeline.
client:LangChain
transport:stdio
runtime:npm
Install three.ws Vision in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"vision-mcp": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@three-ws/vision-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs