Skip to content
LangChain

Tiny Go MCP Server for LangChain

io.github.kioie/tiny-go-mcp

Demo stdio MCP server (tools, resource, prompt) for tinymcp tests—not production use.

client:LangChain transport:stdio runtime:oci

Install Tiny Go MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "tiny-go-mcp": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/kioie/tiny-go-mcp:1.1.2"],
        }
})

tools = await client.get_tools()

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

Tiny Go MCP Server in other clients