Skip to content
LangChain

devkit for strapi mcp for LangChain

io.github.paulrichez/devkit-for-strapi-mcp

Accurate Strapi project facts (UIDs, schemas, references) for AI agents — no more guessed UIDs.

client:LangChain transport:stdio runtime:npm

Install devkit for strapi mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

devkit for strapi mcp in other clients