Telos Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Telos Mcp (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.
Task planning and tracking for AI agents. An MCP server with project-based organization and Obsidian-compatible markdown storage.
Gives any MCP-compatible AI agent persistent task management:
npx telos-mcpnpm install -g telos-mcpOr from source:
git clone https://github.com/skye-flyhigh/telos-mcp.git
cd telos-mcp && npm install && npm run buildThen point your client to "command": "node", "args": ["/path/to/telos-mcp/dist/index.js"].
| Variable | Default | Description |
|---|---|---|
TELOS_DIR | ~/.telos | Directory where task files are stored |
Set TELOS_DIR to override the default storage location:
TELOS_DIR=/custom/path npx telos-mcpOr in the MCP config:
{
"mcpServers": {
"telos": {
"command": "npx",
"args": ["telos-mcp"],
"env": { "TELOS_DIR": "/custom/path" }
}
}
}Add to .claude.json:
{
"mcpServers": {
"telos": {
"type": "stdio",
"command": "npx",
"args": ["telos-mcp"],
"env": {}
}
}
}Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"telos": {
"command": "npx",
"args": ["telos-mcp"]
}
}
}| Tool | Description |
|---|---|
task_create | Create a new task with subject, description, tags, dependencies, project_id |
task_update | Update status, dependencies, project, or details of an existing task |
task_get | Get full details of a task by ID |
task_list | List all tasks (summary view), with optional filters |
task_delete | Delete a task by ID (removes the folder) |
task_move | Move a task to a different project (or to global tasks) |
task_create_bulk | Create multiple tasks at once |
task_tree | Get task hierarchy tree with all descendants |
| Tool | Description |
|---|---|
telos_project_create | Create a new project for organizing tasks |
telos_project_get | Get full project information by key |
telos_project_list | List all projects with optional filtering |
telos_project_update | Update project metadata |
telos_project_archive | Archive a project (moves to archive/year/) |
pending → planning → in_progress → reviewing → completed
↓ ↓ ↓ ↓
blocked archived deletedUse status: "deleted" in task_update to remove a task (same as task_delete). Use status: "archived" to preserve task history without active tracking.
Tasks can block each other:
blockedBy: [1, 3] — this task can't start until tasks 1 and 3 completeblockedBy~/.telos/
├── tasks/ # Global tasks (no project)
│ └── {id}-{slug}/
│ └── README.md
├── projects/
│ └── {key}/ # e.g., "mnemo", "black-cat"
│ ├── project.md # Project metadata
│ └── tasks/
│ └── {id}-{slug}/
│ └── README.md
└── archive/
└── {year}/
└── {key}/ # Archived projects preserved
├── project.md
└── tasks/Each task is a folder with a README.md containing YAML frontmatter:
---
id: 1
project_id: mnemo
subject: Fix authentication bug
status: in_progress
created: 2026-03-06T10:00:00.000Z
updated: 2026-03-06T12:30:00.000Z
owner: claude
activeForm: Fixing authentication bug
blockedBy: [3]
blocks: [5, 7]
tags: [backend, auth]
depth: 0
sources:
- https://docs.example.com
- https://github.com/org/repo/issues/42
---
Detailed description with full markdown support.Each project is a project.md file with YAML frontmatter and markdown body:
---
key: mnemo
display_name: Mnemo MCP
tech_stack: [typescript, mcp]
repo_url: "https://github.com/skye-flyhigh/mnemo"
status: active
created: "2026-03-06T10:00:00.000Z"
updated: "2026-03-06T12:00:00.000Z"
archived_at: null
archived_reason: null
sources:
- https://modelcontextprotocol.io
---
Memory management for AI agents. Description goes here as markdown body.Telos is designed for Obsidian compatibility:
[[project-key]] links between tasks and projectsOpen ~/.telos as an Obsidian vault for full visualization.
MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.