Skip to content
LangChain

Bitbucket MCP for LangChain

io.github.fabianschurig/bitbucket-mcp

Bitbucket Cloud MCP in Go: complete API auto-generated from spec, customizable prompts.

client:LangChain transport:stdio runtime:oci

Install Bitbucket MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "bitbucket-mcp": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/fabianschurig/bitbucket-mcp:0.20.2"],
        }
})

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