Skip to content
LangChain

unclaimed sol for LangChain

io.github.nedim1511/unclaimed-sol

The first Vibe Claiming MCP: AI agents scan and reclaim dormant SOL on Solana. Signs locally.

client:LangChain transport:stdio runtime:npm

Install unclaimed sol in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

unclaimed sol in other clients