Skip to content
LangChain

Shodan Internetdb for LangChain

io.github.pipeworx-io/shodan-internetdb

Shodan InternetDB MCP — wraps Shodan InternetDB (internetdb.shodan.io)

client:LangChain transport:streamable-http

Install Shodan Internetdb in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "shodan-internetdb": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/shodan-internetdb/mcp",
        }
})

tools = await client.get_tools()

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

Shodan Internetdb in other clients