Skip to content
LangChain

Ikuna for LangChain

io.github.robertohanas/ikuna-mcp

Read workspace context and activity from the running Ikuna macOS app, with app-managed permissions.

client:LangChain transport:stdio runtime:npm

Install Ikuna in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Ikuna in other clients