Track DSA/LeetCode practice with spaced repetition, ships with NeetCode 150.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"dsa-tracker": {
"args": [
"/absolute/path/to/dsa-tracker-mcp/server.py"
],
"command": "/absolute/path/to/dsa-tracker-mcp/.venv/bin/python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
mcp-name: io.github.ashmitrrr/dsa-tracker-mcp-server
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
progresscurrent progress snapshot
dsa://progress
problem-listfull list of tracked problems
dsa://problem-list
daily_reviewgenerates a daily review session based on what's due
explain_patternexplains the core pattern/approach for a given category
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
Autonomous spec-to-product coding-agent CLI with an MCP server exposing 34 tools over stdio.
MCP Security Weekly
Get CVE alerts and security updates for io.github.ashmitrrr/dsa-tracker-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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".
| Tool | Description |
|---|---|
log_attempt | Log an attempt at a problem (status, confidence 1-5, time spent). Schedules the next review. |
get_next_problem | Get what to work on next: an overdue review, or the next new problem in order. Optional category filter. |
get_stats | Overall progress summary — solved counts, per-category breakdown, streak, total time. |
search_problems | Search/filter problems by name, category, difficulty, or status. |
get_problem_history | All logged attempts for a given problem, chronological. |
dsa://progress — current progress snapshotdsa://problem-list — full list of tracked problemsdaily_review — generates a daily review session based on what's dueexplain_pattern(category) — explains the core pattern/approach for a given categorydsa-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.
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.
If you'd rather install it directly:
pip install dsa-tracker-mcp
Then point your config at the installed console script:
{
"mcpServers": {
"dsa-tracker": {
"command": "dsa-tracker-mcp"
}
}
}
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 .
| Variable | Default | Description |
|---|---|---|
DSA_TRACKER_DB | ~/.dsa_tracker_mcp/progress.db | Path to the SQLite database |
DSA_TRACKER_PROBLEMS_FILE | (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"
}
}
}
}
[
{
"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. `