Skip to content
LangChain

FO Semantic MCP for LangChain

io.github.xplusplusai/fo-semantic-mcp

Semantic search over 50,000+ Dynamics 365 F&O artifacts: tables, forms, classes, and more.

client:LangChain transport:stdio runtime:npm

Install FO Semantic MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

FO Semantic MCP in other clients