Skip to content
LangChain

Intentions MCP Server for LangChain

io.github.intentions-me/intentions-mcp

Personalized timing intelligence for AI agents — ask 'should I do X on this date?'

client:LangChain transport:streamable-http tools:7

Install Intentions MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "intentions-mcp": {
            "transport": "streamable_http",
            "url": "https://mcp.intentions.me/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

Intentions MCP Server in other clients