Funplay Unity MCP for LangChain
io.github.funplayai/funplay-unity-mcp
stdio bridge for the local Unity Editor MCP server from FunplayAI/funplay-unity-mcp.
client:LangChain
transport:stdio
runtime:nuget
Install Funplay Unity MCP in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"funplay-unity-mcp": {
"transport": "stdio",
"command": "dnx",
"args": ["funplay.unity.mcp", "--yes"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs