Skip to content
LangChain

formio mcp for LangChain

io.form/formio-mcp

Create and manage Form.io forms, resources, actions, roles, and projects from your AI agent.

client:LangChain transport:stdio runtime:npm

Install formio mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

formio mcp in other clients