dsa-tracker-mcp
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., "@dsa-tracker-mcplog that I solved Two Sum with confidence 4"
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.
dsa-tracker-mcp
mcp-name: io.github.ashmitrrr/dsa-tracker-mcp-server
This is an MCP server for tracking your progress through your DSA questions and comes loaded with a default list of NeetCode 150 (any custom DSA problem list can be switched per user) with built-in spaced repetition. Built with FastMCP and SQLite.
Talk to it naturally from Claude: "what should I work on next", "log that I solved Two Sum, confidence 4, took 12 minutes", "how's my progress", "show me my history on Contains Duplicate".
Features
Spaced repetition — problems you struggle with come back sooner, problems you nail come back later. Schedule is based on how you rated each attempt (gave up / struggled / solved) and your confidence (1-5).
List-agnostic — ships with the full NeetCode 150 (150 problems, 18 categories) but can load any custom problem list via a JSON file.
Fuzzy matching — log an attempt with a loosely-typed problem name ("two sum", "contains dupe") and it'll match the right problem.
Stats & streaks — solved counts, per-category breakdown, daily streak, total time spent.
Related MCP server: boj-mcp
Tools
Tool | Description |
| Log an attempt at a problem (status, confidence 1-5, time spent). Schedules the next review. |
| Get what to work on next: an overdue review, or the next new problem in order. Optional category filter. |
| Overall progress summary — solved counts, per-category breakdown, streak, total time. |
| Search/filter problems by name, category, difficulty, or status. |
| All logged attempts for a given problem, chronological. |
Resources
dsa://progress— current progress snapshotdsa://problem-list— full list of tracked problems
Prompts
daily_review— generates a daily review session based on what's dueexplain_pattern(category)— explains the core pattern/approach for a given category
Installation
dsa-tracker-mcp is published on PyPI, no manual cloning or virtual environments needed. The recommended way to run it is with uv, which downloads and runs the package on demand.
Claude Desktop
Add to your claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"dsa-tracker": {
"command": "uvx",
"args": ["dsa-tracker-mcp"]
}
}
}Restart Claude Desktop completely after saving.
Alternative: pip install
If you'd rather install it directly:
pip install dsa-tracker-mcpThen point your config at the installed console script:
{
"mcpServers": {
"dsa-tracker": {
"command": "dsa-tracker-mcp"
}
}
}From source
git clone https://github.com/ashmitrrr/dsa-tracker-mcp-server.git
cd dsa-tracker-mcp-server
python3 -m venv .venv
source .venv/bin/activate # on Windows: .venv\Scripts\activate
pip install -e .Environment variables (optional)
Variable | Default | Description |
|
| Path to the SQLite database |
| (none, uses built-in NeetCode 150) | Path to a JSON file with a custom problem list |
To set these with uvx, add an env block to your config:
{
"mcpServers": {
"dsa-tracker": {
"command": "uvx",
"args": ["dsa-tracker-mcp"],
"env": {
"DSA_TRACKER_PROBLEMS_FILE": "/absolute/path/to/my-problems.json"
}
}
}
}Custom problem list format
[
{
"name": "Two Sum",
"category": "Arrays & Hashing",
"difficulty": "Easy",
"url": "https://leetcode.com/problems/two-sum/"
}
]url and difficulty are optional and will be auto-filled where possible. order_index is assigned automatically based on list order.
Spaced repetition logic
Outcome | Next review |
Gave up | 1 day |
Struggled, confidence ≤ 2 | 2 days |
Struggled, confidence ≥ 3 | 4 days |
Solved, confidence ≤ 3 | 7 days |
Solved, confidence ≥ 4 | 21 days |
get_next_problem prioritizes overdue reviews before suggesting new problems.
Example prompts
"What should I work on next?"
"I just solved Valid Anagram, confidence 5, took 6 minutes, log it"
"How's my progress on Trees?"
"Show me my history on Two Sum"
"Give me a daily review"
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceAn MCP server that provides tools to interact with the LeetCode API, enabling problem fetching, code template generation, and solution execution/submission.Last updated71
- Alicense-qualityCmaintenanceUnofficial MCP server for searching and recommending Baekjoon (BOJ) problems using the solved.ac API.Last updated193MIT
- Flicense-qualityCmaintenanceAn MCP server that provides structured, AI-powered guidance for LeetCode problems, including approach analysis, hints, complexity breakdowns, and optimization directions without spoiling solutions.Last updated351
- AlicenseAqualityCmaintenanceAn MCP server for agent-guided DSA practice that generates LeetCode-style problems and provides tutoring with escalating hints, concept explanations, and progress tracking.Last updated77MIT
Related MCP Connectors
Official MCP server for Lovable, the AI-powered full-stack app builder.
MCP server aggregating developer infrastructure deals, free tiers, and startup programs
A MCP server built for developers enabling Git based project management with project and personal…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/ashmitrrr/dsa-tracker-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server