Skip to content
LangChain

GoDrop for LangChain

io.github.fatihbaltaci/godrop

Self-hosted file host: upload a file, get a public URL an agent can paste into a pull request.

client:LangChain transport:stdio runtime:oci

Install GoDrop in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "godrop": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/fatihbaltaci/godrop:1.3.1"],
        }
})

tools = await client.get_tools()

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

GoDrop in other clients