luogu-mcp-server
A read-only MCP server for discovering, searching, and fetching problems and resources from the Luogu competitive programming platform, designed for AI tutoring and practice agents.
Search Problems (
luogu_search_problems): Search by keyword, topic, title fragment, or problem ID, with optional tag ID filters.Fetch Problem (
luogu_fetch_problem): Retrieve a full problem statement, input/output formats, sample cases, tags, difficulty, and source URL by problem ID (e.g.,P1305).Resolve Problem (
luogu_resolve_problem): Resolve a Luogu URL, problem ID, or title fragment and automatically fetch the corresponding problem details.Find Related Problems (
luogu_find_related_problems): Discover related practice problems by combining topic/pain-point recommendations with keyword search.List Algorithm Topics (
luogu_list_algorithm_topics): List all canonical algorithm topics, their aliases, and known Luogu tag IDs.Find Topic Problems (
luogu_find_topic_problems): Find practice problems for a specific algorithm topic (e.g., Treap, SPFA, 动态规划) using alias expansion and tag IDs.Search Problem Sets (
luogu_search_problem_sets): Search Luogu training/problem sets by keyword.Fetch Problem Set (
luogu_fetch_problem_set): Fetch a specific training/problem set and its problem summaries by set ID.Recommend Problems (
luogu_recommend_problems): Get seed problem recommendations based on an algorithm topic or student pain point.Get User Profile (
luogu_get_user_profile): Fetch public profile data for a Luogu user by their user ID.Get Capabilities (
luogu_get_capabilities): Report which route features are currently available, require authentication, or are planned.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@luogu-mcp-serversearch for problems about binary trees"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
luogu-mcp-server
A small stdio MCP server for Luogu problem discovery. It exposes a LeetCode-MCP-style Luogu route for problem search, problem fetch, URL/id resolution, related practice discovery, training set search, training set fetch, public user profiles, and explicit capability reporting.
Why
This server is designed for AI tutoring and practice agents. The model can find a problem by topic, fetch the exact statement and samples, or ask for a bounded recommendation from a known topic or student pain point.
Related MCP server: xhs-mcp
Tools
Tool | Purpose |
| Search Luogu problems by keyword, topic, title fragment, problem id, and optional Luogu tag ids. |
| Fetch one Luogu problem statement, formats, samples, tags, difficulty, and URL by |
| Resolve a Luogu URL, problem id, or title fragment, then fetch the problem. |
| Mix topic/pain-point recommendations with live keyword search to find related practice. |
| List canonical algorithm topics, aliases, and known tag ids. |
| Find topic practice problems using aliases, tag ids, deduplication, and match reasons. |
| Search Luogu training/problem sets by keyword. Supports `type: "all" |
| Fetch one Luogu training/problem set and problem summaries by id. |
| Return seed recommendations from a topic or student pain point. |
| Fetch public Luogu user profile data by uid. |
| Report which LeetCode-style route features are available, auth-required, or planned. |
All tools are read-only.
Install From Source
git clone https://github.com/kaiserunix/luogu-mcp-server.git
cd luogu-mcp-server
cmd /c npm install
cmd /c npm run buildUse From npm
The package is published on npm as luogu-mcp-server.
npx -y luogu-mcp-serverFor stdio MCP clients, use:
{
"mcpServers": {
"luogu": {
"command": "npx",
"args": ["-y", "luogu-mcp-server"]
}
}
}MCP Client Config From Source
Use node directly as the stdio command:
{
"mcpServers": {
"luogu": {
"command": "node",
"args": [
"C:\\Users\\qwerf\\Desktop\\luogu-mcp-server\\dist\\index.js"
],
"cwd": "C:\\Users\\qwerf\\Desktop\\luogu-mcp-server"
}
}
}Hosted Cloudflare Worker
A public read-only Streamable HTTP deployment is available at:
Health:
https://luogu-mcp-server.lantangtang54.workers.dev/healthMCP endpoint:
https://luogu-mcp-server.lantangtang54.workers.dev/mcp
For Streamable HTTP MCP clients, use:
{
"mcpServers": {
"luogu": {
"url": "https://luogu-mcp-server.lantangtang54.workers.dev/mcp"
}
}
}Example Calls
Search problems:
{
"keyword": "二叉树",
"page": 1,
"limit": 5
}Search problems with a Luogu tag filter:
{
"keyword": "二叉树",
"tagIds": [11],
"limit": 5
}Fetch a problem:
{
"pid": "P1305",
"maxStatementChars": 5000
}Recommend from a pain point:
{
"topic": "binary_tree",
"painPoint": "traversal_order_confusion",
"limit": 3
}Resolve a pasted URL:
{
"query": "https://www.luogu.com.cn/problem/P1305",
"maxStatementChars": 5000
}Find related practice:
{
"topic": "binary_tree",
"painPoint": "traversal_order_confusion",
"query": "二叉树 遍历",
"limit": 5
}Find topic practice with alias expansion:
{
"topic": "Treap",
"limit": 5,
"excludeProblemIds": ["P3369"]
}Fetch a public user profile:
{
"uid": 1
}Search training/problem sets:
{
"keyword": "网络流",
"type": "select",
"limit": 5
}type: "all" is the default. It combines title-filtered official sets with selected user-shared set search. Use type: "official" for the public official index, or type: "select" for selected user-shared sets.
Luogu Route Parity
This project mirrors the useful shape of richer LeetCode MCP servers while respecting what Luogu exposes publicly:
Available now: problem search, problem fetch, URL/id/title resolution, related problem discovery, training set search/fetch, public user profile fetch.
Auth-required in live probes: recent submissions, public solution pages, and discussion pages.
Planned but intentionally not enabled: solution submission/run-code tools. Those require authenticated session handling and explicit write-tool safety gates.
Development
cmd /c npm test
cmd /c npm run buildCloudflare Worker Deployment
This package also includes a stateless Streamable HTTP MCP entrypoint for Cloudflare Workers.
cmd /c npm test
cmd /c npm run smoke:cf
cmd /c npx wrangler login
cmd /c npm run deploy:cf:dry
cmd /c npm run deploy:cfThe Worker exposes the same read-only tools at /mcp, with a health endpoint at / or /health.
{
"mcpServers": {
"luogu": {
"url": "https://<your-worker-name>.<your-workers-subdomain>.workers.dev/mcp"
}
}
}Verify a deployed Worker:
cmd /c npm run smoke:cf -- https://<your-worker-name>.<your-workers-subdomain>.workers.devFor private deployments, set LUOGU_MCP_TOKEN with wrangler secret put and configure your MCP client to send an Authorization: Bearer <token> header where supported. Browser Origin requests are rejected by default; set LUOGU_MCP_ALLOWED_ORIGINS to a comma-separated origin list if browser access is needed.
See docs/cloudflare-deployment.md for the full release checklist.
Run broad live checks against Luogu's current website responses:
cmd /c npm run smoke:liveThe live smoke starts the MCP server through a real stdio client, then compares problem fetches, problem searches, training searches, training fetches, URL/id resolution, related recommendations, public user profiles, and route capabilities against Luogu content-only page responses. It is intentionally separate from unit tests because it depends on Luogu network availability and current site behavior.
Run the 100-topic algorithm coverage smoke:
cmd /c npm run smoke:topicsThe topic smoke starts the real MCP server and probes 100 algorithm categories across high-level topic search and training-set search. It fails if fewer than 98 topic searches return Luogu results.
Download one representative problem per catalog topic into a local ignored folder:
cmd /c npm run download:topicsTest a MiMo agent loop that asks the model to choose MCP tools, then executes those calls through the local stdio MCP server:
cmd /c npm run smoke:mimosmoke:mimo reads MIMO_API_KEY from the environment, or from C:\Users\qwerf\.continue\.env on this machine.
Notes
Luogu endpoints used here are content-only web endpoints, not a formal stability contract.
The server keeps outputs compact and structured for model context control.
Browser automation is intentionally not the default path. A Playwright fallback can be added later for pages that cannot be read through lightweight HTTP.
For broad topic discovery, Luogu training-set search is often cleaner than raw problem title search; raw keyword search follows Luogu's website ordering and can include title-level noise.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kaiserunix/luogu-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server