Skip to content
LangChain

devto mcp for LangChain

io.github.mrfentmen/devto-mcp

Read articles and posts from the dev.to community. No key required.

client:LangChain transport:stdio runtime:npm

Install devto mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

devto mcp in other clients