Skip to content
LangChain

bitbucket for LangChain

com.mcparmory/bitbucket

Manage repositories, branches, webhooks, and pull requests in Bitbucket workspaces

client:LangChain transport:stdio runtime:pypi

Install bitbucket in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "bitbucket": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["mcparmory-bitbucket"],
        }
})

tools = await client.get_tools()

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

bitbucket in other clients