GEML — a plain-text document format built to be edited in place, one section at a time for LangChain
io.github.geml-spec/geml
One section in, one section out — on Markdown/GEML files, bad writes refused.
client:LangChain
transport:stdio
runtime:npm
Install GEML — a plain-text document format built to be edited in place, one section at a time in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"geml": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@geml/geml"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs