Skip to content
LangChain

thumbtack mcp for LangChain

io.github.chrischall/thumbtack-mcp

Unofficial Thumbtack MCP — search local service pros, read profiles, ratings and reviews

client:LangChain transport:stdio runtime:npm

Install thumbtack mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

thumbtack mcp in other clients