Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Task Guide

БесплатноНе проверен

Improves AI agent task performance by providing task area segmentation, hierarchical RAG, and hybrid search capabilities.

GitHubEmbed

Описание

Improves AI agent task performance by providing task area segmentation, hierarchical RAG, and hybrid search capabilities.

README

An MCP (Model Context Protocol) server for improving AI Agent task performance. It addresses AI performance degradation issues that occur as projects become larger by providing task area segmentation, hierarchical RAG, and hybrid search capabilities.

Key Features

1. Guidance Management

  • create_guidance: Creates a new task guidance
  • update_guidance: Updates an existing guidance
  • list_guidances: Lists all guidances
  • get_guidance: Retrieves a specific guidance
  • delete_guidance: Deletes a guidance

2. Hierarchical RAG

  • Indexes codebase in hierarchical structure (directory, file, function, class)
  • Progressive exploration from high-level concepts to detailed information
  • Dynamically combines relevant context based on required abstraction level

3. Hybrid Search

  • Combines vector (semantic) search with structural indexing
  • Relationship-based search through knowledge graphs
  • Combines high-precision evidence, code, and decision history

4. Indexing and Search

  • index_guidance: Indexes codebase and documents for a guidance
  • search: Performs hybrid search
  • build_hierarchy: Builds codebase hierarchical structure

Installation and Execution

1. Install Dependencies

npm install

2. Build

npm run build

3. Development Mode

npm run dev

4. Production Execution

npm start

Usage

MCP Client Configuration

Configure the server in your MCP client as follows:

{
  "mcpServers": {
    "task-guide": {
      "command": "node",
      "args": ["/path/to/task-guide-mcp/dist/index.js"]
    }
  }
}

Guidance Creation Example

// Create a new guidance
await mcp.callTool('create_guidance', {
  title: 'React Component Development',
  objective: 'Develop reusable React components',
  technicalConstraints: [
    'Use TypeScript',
    'Use only functional components',
    'Tailwind CSS styling'
  ],
  workRules: [
    'Components follow single responsibility principle',
    'Props defined with interfaces',
    'Storybook documentation required'
  ],
  completionCriteria: [
    'Component functions correctly',
    'No TypeScript errors',
    'Storybook stories completed'
  ],
  tags: ['react', 'typescript', 'component'],
  priority: 'high'
});

Search Example

// Hybrid search
const results = await mcp.callTool('search', {
  query: 'React component',
  type: 'code',
  limit: 5,
  threshold: 0.7
});

Project Structure

task-guide-mcp/
├── src/
│   ├── types/
│   │   └── index.ts              # Type definitions
│   ├── core/
│   │   ├── guidance-manager.ts   # Guidance management
│   │   ├── hierarchical-rag.ts   # Hierarchical RAG
│   │   └── hybrid-search.ts      # Hybrid search
│   └── index.ts                  # MCP server main
├── guidance/                     # Guidance repository
│   ├── {guidance-id}/
│   │   └── summary.json         # Guidance summary
│   └── metadata/
│       └── {guidance-id}.vec    # Metadata vector
├── data/
│   └── search.db                # Search database
├── package.json
├── tsconfig.json
└── README.md

Technology Stack

  • TypeScript: Type safety
  • @modelcontextprotocol/sdk: MCP protocol implementation
  • better-sqlite3: Vector and structural index storage
  • OpenAI API: Embedding generation (future implementation)
  • Hierarchical RAG: Codebase structure analysis
  • Hybrid Search: Vector + structural search

License

MIT License

from github.com/2001302/Task-Guide-MCP

Установка Task Guide

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/2001302/Task-Guide-MCP

FAQ

Task Guide MCP бесплатный?

Да, Task Guide MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Task Guide?

Нет, Task Guide работает без API-ключей и переменных окружения.

Task Guide — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Task Guide в Claude Desktop, Claude Code или Cursor?

Открой Task Guide на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Task Guide with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории productivity