スキル一覧に戻る
bobmatnyc

vector-search-workflows

by bobmatnyc

Curated collection of Claude Code skills for intelligent project development with progressive loading and toolchain detection

7🍴 2📅 2026年1月22日
GitHubで見るManusで実行

SKILL.md


name: vector-search-workflows description: Vector search indexing and querying workflows using MCP Vector Search, including setup, reindexing, auto-index strategies, and MCP integration. version: 1.0.0 category: toolchain author: Claude MPM Team license: MIT progressive_disclosure: entry_point: summary: "Index a codebase with mcp-vector-search, keep it fresh with auto-indexing, and query via CLI or MCP integration." when_to_use: "Building semantic search for codebases, setting up MCP search tools, or troubleshooting indexing and reindexing workflows." quick_start: "1. mcp-vector-search setup 2. mcp-vector-search search "query" 3. mcp-vector-search index --force when schema changes" tags:

  • vector-search
  • embeddings
  • indexing
  • search
  • mcp

Vector Search Workflows (MCP Vector Search)

Overview

Use mcp-vector-search to index codebases into ChromaDB and search via semantic embeddings. The recommended flow is setup (init + index + MCP integration), then search, and use index or auto-index to keep data fresh.

Quick Start

pip install mcp-vector-search
mcp-vector-search setup
mcp-vector-search search "authentication logic"

setup detects languages, initializes config, indexes the repo, and configures MCP integrations (Claude Code, Cursor, etc.).

Core Commands

Indexing

mcp-vector-search index
mcp-vector-search index --force
mcp-vector-search index reindex --all --force
mcp-vector-search index reindex path/to/file.py

Auto-Index Strategies

mcp-vector-search auto-index setup --method all
mcp-vector-search auto-index status
mcp-vector-search auto-index check --auto-reindex --max-files 10
mcp-vector-search auto-index teardown --method all
mcp-vector-search search "error handling patterns"
mcp-vector-search search "vector store initialization"

Status + Doctor

mcp-vector-search status
mcp-vector-search doctor

MCP Integration Pattern

setup uses native claude mcp add when available, otherwise falls back to .mcp.json.

Typical .mcp.json entry:

{
  "mcpServers": {
    "mcp-vector-search": {
      "type": "stdio",
      "command": "uv",
      "args": ["run", "mcp-vector-search", "mcp"],
      "env": {
        "MCP_ENABLE_FILE_WATCHING": "true"
      }
    }
  }
}

Reindex Triggers

  • Dependency updates or parser changes
  • Large refactors
  • Adding new languages or file extensions
  • Tool upgrades (version tracking triggers reindex)

Local Patterns

  • Use uv for dev installs: uv sync --dev
  • Use setup --force to rebuild config + index after tool upgrades
  • Keep file watching on via MCP_ENABLE_FILE_WATCHING=true
  • toolchains/ai/protocols/mcp
  • universal/main/mcp-builder

スコア

総合スコア

70/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です