Skip to content
LangChain

gunsnation for LangChain

io.github.dynamicdeals/gunsnation

MCP server for real-time access to the Gunsnation firearms catalog and specifications.

client:LangChain transport:stdio runtime:npm

Install gunsnation in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

gunsnation in other clients