AtCoder MCP Server for LangChain
io.github.ketherworks/atcoder
Search AtCoder problems and fetch public problem statements through MCP.
client:LangChain
transport:streamable-http
tools:4
Install AtCoder MCP Server in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"atcoder": {
"transport": "streamable_http",
"url": "https://api.ksrnyx.top/oj-mcp/atcoder/mcp",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs