Skip to content
LangChain

pondlog ebird for LangChain

io.github.andrewschristison/pondlog-ebird

eBird MCP server. 21 tools covering eBird API v2: observations, hotspots, checklists, taxonomy.

client:LangChain transport:stdio runtime:npm

Install pondlog ebird in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

pondlog ebird in other clients