Skip to content
LangChain

SkillFM Beacon for LangChain

io.github.ericm1018/skillfm

AI health, token usage, LLM cost optimization, BYOK vault, and cleanup audits for MCP agents.

client:LangChain transport:stdio runtime:npm

Install SkillFM Beacon in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

SkillFM Beacon in other clients