vector-task-mcp CLAUDE.md

vector-task-mcp CLAUDE.md is an instructions file for coding agents from Xsaven/vector-task-mcp. It costs 1,948 tokens per session, scanned A, original, MIT.

Project instructions for a local task-management server that stores tasks in SQLite and supports meaning-based search. SQLite is a small database that runs in a file, while an MCP server lets an AI agent use connected tools.

In plain words
What is it for?
Use it when developing, running, or maintaining the task server and its vector-search storage.
Why use it?
It gives an agent the project structure, technologies, dependencies, and run instructions needed to work on this codebase consistently.

Instructions file

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/xsaven/vector-task-mcp/claude-md
Clone the repo
git clone --depth 1 https://github.com/Xsaven/vector-task-mcp

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for vector-task-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/xsaven/vector-task-mcp/claude-md.svg)](https://agentmods.dev/instructions/xsaven/vector-task-mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/xsaven/vector-task-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/xsaven/vector-task-mcp/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,948 This file is loaded in full into every session.
When invoked 1,948 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01948 $0.01948
Opus 5 $0.00974 $0.00974
Sonnet 5 $0.00390 $0.00390
Haiku 4.5 $0.00195 $0.00195

Measured 3d ago against content hash 93a3f5fc0830, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

vector-task-mcp CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 167 lines

How it starts

The opening of the file, as written. The whole thing — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Vector Task MCP Server

Project Overview

MCP (Model Context Protocol) Server для управління задачами з використанням sqlite-vec для семантичного пошуку.

Technology Stack

  • Python: 3.11.8 (requires >= 3.10)
  • Package Manager: uv (сучасний Python package manager)
  • Database: SQLite 3.43.2 + sqlite-vec extension
  • Embeddings: sentence-transformers/all-MiniLM-L6-v2 (384-dimensional vectors)
  • MCP Framework: FastMCP >= 0.3.0

Key Dependencies

  • mcp>=0.3.0 - Model Context Protocol framework
  • sqlite-vec>=0.1.6 - Vector search extension для SQLite
  • sentence-transformers>=2.2.2 - Embedding models

Project Structure

  • main.py - Entry point with uv script configuration
  • requirements.txt - Python dependencies for pip/venv compatibility
  • pyproject.toml - Modern Python project configuration
  • .python-version - Python version specification (3.11)
  • claude-desktop-config.example.json - Claude Desktop configuration template
  • src/models.py - Data models and configuration
  • src/security.py - Security validation and sanitization
  • src/task_store.py - Vector task storage operations
  • tasks.db - SQLite database for tasks

How to Run

Standalone

# Using uv (requires Python with SQLite extensions support)
uv run main.py --working-dir ./

# Alternative with conda Python (has SQLite extensions support)
~/miniconda3/envs/vector-mcp/bin/python main.py --working-dir ./

Configuration Options

  • --working-dir - Working directory for task database (required, default: current directory)

    • Specifies the project directory where the memory/ subdirectory will be created
    • Database will be stored at {working-dir}/memory/tasks.db
    • Example: --working-dir /path/to/project → database at /path/to/project/memory/tasks.db
  • --task-folder - Optional root directory for per-task folders (feature opt-in)

    • When set, every ROOT task gets its own folder named by its code (e.g. {--task-folder}/FEAT-44/) plus a generated task.md template.
    • Subtasks NEVER receive folders — only root tasks (parent_id IS NULL).
    • Status transitions rename/archive the folder automatically: completed → -on-review, done → Archive/{code} (top-level Archive), completed → in_progress reverts the rename.
    • Filesystem failures NEVER block DB operations — the manager logs warnings and returns silently. DB state is the source of truth.
    • Read APIs: task_get returns folder_path + folder_files for root tasks; task_folder_files(task_id|code) returns the same listing on demand.
    • Example: --task-folder /path/to/project/tasks → root task FEAT-12 gets /path/to/project/tasks/FEAT-12/task.md.

Read the full file on GitHub · 167 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 167 lines · 1,948 tokens per session scan A 93a3f5fc0830

Subscribe to this mod's changes

vector-task-mcp CLAUDE.md is an instructions file published in the GitHub repository Xsaven/vector-task-mcp (0 stars, last pushed 3mo ago), licensed MIT. It adds 1,948 tokens to every session, about $0.0097 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.