Skip to content
LangChain

plugin for LangChain

ai.circulara/plugin

Circulara Observe MCP plugin - meters your AI agents' token spend and carbon, free tier.

client:LangChain transport:stdio runtime:npm

Install plugin in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

plugin in other clients