Skip to content
LangChain

Bitbucket MCP for LangChain

io.github.matanyemini/bitbucket-mcp

Model Context Protocol (MCP) server for Bitbucket Cloud and Server API integration

client:LangChain transport:stdio runtime:npm

Install Bitbucket MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Bitbucket MCP in other clients