NYC FHV Intelligence API for LangChain
io.github.matchuplabs/nycfhv
Real-time NYC TLC for-hire vehicle license verification and renewal-window lead lookups via MCP.
client:LangChain
transport:stdio
runtime:npm
Install NYC FHV Intelligence API in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"nycfhv": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@matchuplabs/nycfhv-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs