NetLogo MCP for LangChain
io.github.razee4315/netlogo-mcp
Create, run, and analyze NetLogo agent-based models through natural conversation
client:LangChain
transport:stdio
runtime:pypi
Install NetLogo MCP in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"netlogo-mcp": {
"transport": "stdio",
"command": "uvx",
"args": ["netlogo-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs