Skip to content
LangChain

tablestakes for LangChain

io.github.oborchers/tablestakes

Read and edit HTML/Markdown tables in GitBook-synced documents via MCP tools.

client:LangChain transport:stdio runtime:pypi

Install tablestakes in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

tablestakes in other clients