Skip to content
LangChain

HubSpot Integrations MCP for LangChain

io.github.centrify-internal/hubspot-integrations-mcp

MCP server for the HubSpot Integrations Center HubDB: search and retrieve integration data.

client:LangChain transport:streamable-http tools:2

Install HubSpot Integrations MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "hubspot-integrations-mcp": {
            "transport": "streamable_http",
            "url": "https://n6k96b1ql7.execute-api.us-west-2.amazonaws.com/prod/",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

HubSpot Integrations MCP in other clients