Task-Guide-MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Task-Guide-MCPCreate a new guidance for React component development"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Task Guide MCP Server
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
Related MCP server: MCP Shrimp Task Manager
Installation and Execution
1. Install Dependencies
npm install2. Build
npm run build3. Development Mode
npm run dev4. Production Execution
npm startUsage
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.mdTechnology 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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceProvides AI assistants with a hierarchical task management system that maintains focus and context across complex problem-solving sessions, solving context window limitations through organized task structures.Last updated126GPL 3.0
- Alicense-qualityDmaintenanceAn intelligent task management system that provides structured workflows for AI Agents to plan, decompose, and execute complex programming tasks. It features a dedicated research mode for technical investigations and a task memory function to optimize workflows and avoid redundant coding work.Last updated1MIT
- AlicenseAqualityCmaintenanceEnables AI agents to manage hierarchical memory with Markdown-based storage, tiered architecture (L0-L3), and hybrid retrieval for transparent and persistent context.Last updated8MIT
- Alicense-qualityBmaintenanceMulti-tier memory server for AI agents with hybrid search across episodic, semantic, and procedural memory.Last updated19MIT
Related MCP Connectors
Persistent memory and knowledge graphs for AI agents. Hybrid search, context checkpoints, and more.
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
Long-term memory for AI agents: semantic facts, episodic events, and procedural workflows
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/2001302/Task-Guide-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server