Todo Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Todo Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A simple Todo List MCP server built for learning!
This is an MCP (Model Context Protocol) server that gives AI assistants (like Claude) the ability to manage a todo list for you.
cd todo-mcp
npm installnpm run buildnode index.js(Press Ctrl+C to stop - it will just wait for input)
Edit your Claude Desktop config file:
Mac: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json
Add this to the file:
{
"mcpServers": {
"todo": {
"command": "node",
"args": ["/FULL/PATH/TO/todo-mcp/index.js"]
}
}
}⚠️ Replace `/FULL/PATH/TO/` with the actual path to your todo-mcp folder!
Then restart Claude Desktop.
Create or edit .codebuff/config.json in your project:
{
"mcpServers": {
"todo": {
"command": "node",
"args": ["/FULL/PATH/TO/todo-mcp/index.js"]
}
}
}Or add to global config at ~/.codebuff/config.json.
Then restart Codebuff.
Once connected, just talk to Claude naturally:
Claude will automatically use the right tools!
Look at index.ts - it's full of comments explaining every part!
Key concepts:
Todos are stored in memory only - they disappear when the server restarts. This is intentional for learning! A real app would save to a file or database.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.