Skip to content
LangChain

tiled mcp for LangChain

io.github.fablenator/tiled-mcp

Inspect, validate and surgically edit Tiled map files (.tmx/.tmj) — byte-preserving, 12 tools.

client:LangChain transport:stdio runtime:npm

Install tiled mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "tiled-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@fablenator/tiled-mcp"],
        }
})

tools = await client.get_tools()

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

tiled mcp in other clients