Skip to content
LangChain

alces mcp for LangChain

com.moosejudge/alces-mcp

Alces for Jira Data Center — MCP server bridging Jira DC/JSM with AI agents

client:LangChain transport:stdio runtime:npm

Install alces mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

alces mcp in other clients