GeeksHacking 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., "@GeeksHacking MCPShow all TODOs in src/main.py"
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.
GeeksHacking MCP - TODO Management Server
A Model Context Protocol (MCP) server for managing and tracking #TODO comments from source code files.
Overview
GeeksHacking MCP is an MCP server that provides tools and resources for tracking TODO comments scattered across your codebase. It stores TODO items with their source file location and line numbers, making it easy to manage and query pending tasks directly from your development environment.
Related MCP server: modelroute
Features
Add TODOs: Register TODO comments from any source file with line number tracking
Query TODOs: Retrieve all TODO items for a specific file
Persistent Storage: Stores TODO items in a JSON database
MCP Integration: Works seamlessly with MCP-compatible clients (like Claude Desktop, Cline, etc.)
Installation
Prerequisites
Python 3.13 or higher
uvpackage manager (recommended) orpip
Install via uv
uvx --from git+https://github.com/JiaweiLin/geekshacking-mcp.git todo_mcpInstall from source
# Clone the repository
git clone https://github.com/JiaweiLin/geekshacking-mcp.git
cd geekshacking-mcp
# Install dependencies
uv sync
# Run the server
uv run todo_mcpUsage
As an MCP Server
Add the following configuration to your MCP client configuration file (e.g., Claude Desktop's config):
{
"mcpServers": {
"todo_mcp": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/JiaweiLin/geekshacking-mcp.git",
"todo_mcp"
]
}
}
}Or if installed locally:
{
"mcpServers": {
"todo_mcp": {
"command": "uv",
"args": ["run", "todo_mcp"],
"cwd": "/path/to/geekshacking-mcp"
}
}
}Available Tools
tool_add_todo
Add a single #TODO text from a source file.
Parameters:
filename(string): Source file containing the #TODOline_num(integer): Line number of the #TODOtext(string): #TODO text to add
Example:
{
"filename": "src/main.py",
"line_num": 42,
"text": "Refactor this function for better performance"
}Available Resources
resource_get_todos_for_file
Get all #TODO texts for a source file.
URI Pattern: todo://{filename}/todos
Parameters:
filename(string): Source file containing the #TODO
Returns: Array of TODO text strings (empty array if no TODOs exist for the file)
Example URI: todo://src/main.py/todos
Database
TODO items are stored in a JSON file at:
src/todo_mcp/todo_db.jsonThe database structure:
{
"filename.ext": {
"_10": "TODO text at line 10",
"_20": "TODO text at line 20"
}
}Development
Project Structure
geekshacking-mcp/
├── src/
│ └── todo_mcp/
│ ├── __init__.py
│ ├── todo_mcp.py # MCP server implementation
│ └── todo_db.py # Database management
├── pyproject.toml # Project configuration
├── uv.lock # Dependency lock file
└── README.mdSetting up for Development
# Install development dependencies
uv sync
# Run the server locally
uv run todo_mcp
# Run tests (if available)
uv run pytestDependencies
fastmcp>=2.13.0.2- FastMCP framework for building MCP servers
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
MIT License
Links
Support
For issues, questions, or contributions, please visit the GitHub repository.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Flicense-qualityDmaintenanceAn MCP server that provides tools and resources for managing a coding project's todo list, allowing users to view, add, update, and delete todo items with details like priority, status, and tags.Last updated1

modelrouteofficial
Flicense-qualityBmaintenanceEnables AI agents to scan code for TODO, FIXME, XXX issues via MCP, providing prioritized findings in table, JSON, or SARIF format.Last updated- Flicense-qualityBmaintenanceExposes your todo-tree task list as MCP tools for reading and managing tasks via MCP-compatible AI clients like Claude Desktop.Last updated
- FlicenseAqualityCmaintenanceEnables task management (create, list, update tasks with priority and status) using SQLite storage via MCP tools.Last updated3
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
MCP-native open-source Notion alternative: read & write pages, databases and kanban boards.
WakaTime MCP.
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/JiaweiLin/geekshacking-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server