onepiece oracle for LangChain
io.github.gregario/onepiece-oracle
One Piece TCG MCP server with card search, deck analysis, and set browsing
client:LangChain
transport:stdio
runtime:npm
Install onepiece oracle in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"onepiece-oracle": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "onepiece-oracle"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs