tasksync-mcp

tasksync-mcp

MCP server to give new instructions to agent while its working. It uses the get_feedback tool to collect your input from the feedback.md file in the workspace, which is sent back to the agent when you save.

Category
Visit Server

README

TaskSync MCP Server

This is an MCP server that helps with feedback-oriented development workflows in AI-assisted development by letting users give feedback while the agent is working. It uses the get_feedback tool to collect your input from the feedback.md file in the workspace, which is sent back to the agent when you save. By guiding the AI with feedback instead of letting it make speculative operations, it reduces costly requests and makes development more efficient. With an additional tool that allows the agent to view images in the workspace.

🌟 Key Features

🔄 Continuous Review Feedback

  • get_feedback tool that reads feedback.md for real-time feedback
  • Automatically creates feedback.md if it doesn't exist in the workspace
  • File watcher automatically detects changes and notifies waiting processes
  • Essential for iterative development and user feedback loops

🖼️ Media Processing

  • view_media tool for images files with base64 encoding
  • Supports image formats: PNG, JPEG, GIF, WebP, BMP, SVG
  • Efficient streaming for large files with proper MIME type detection

🛠️ Quick Setup

</details>

Global Setup. Add to mcp.json:

{
  "mcpServers": {
    "tasksync": {
      "command": "npx",
      "args": ["-y", "tasksync-mcp@latest", "/path/to/directory"]
    }
  }
}

For VS Code:

 {
    "servers": {
        "tasksync": {
        "command": "npx",
        "type": "stdio",
        "args": ["-y", "tasksync-mcp@latest", "/path/to/directory"]
        }
    }
}

</details>

🔨 Available Tools

  • get_feedback - Read feedback.md file for user review/feedback (creates file if missing)
  • view_media - Read image (returns base64 with MIME type)

Workflow Example

  1. User Prompt + TaskSync MCP Rules - User provides a request/task
  2. Agent Response - Agent responds to the prompt AND calls mcp_tasksync_get_feedback tool
  3. Agent Acts Accordingly - Based on feedback, agent will call the tool again if needing:
    • More clarification
    • Confirmation
    • Information
    • New task assignment
    • Additional feedback
  4. Continuous Loop - After completing user tasks/questions, agent calls the tool again
  5. Loop Forever - This continues indefinitely until user stops the chat
graph TD
    A[User Prompt + TaskSync MCP Rules] --> B[Agent Response to Prompt]
    B --> C[Agent Calls get_feedback Tool]
    C --> D[Agent Acts on Feedback]
    D --> E{Need More Info?}
    
    E -->|Yes - Clarification| F[Call get_feedback Tool]
    E -->|Yes - Confirmation| G[Call get_feedback Tool]
    E -->|Yes - New Task| H[Call get_feedback Tool]
    E -->|Yes - More Feedback| I[Call get_feedback Tool]
    E -->|Task Complete| J[Call get_feedback Tool Again]
    
    F --> D
    G --> D
    H --> D
    I --> D
    J --> D
    
    D --> K[Continue Loop Forever]
    K --> C
    
    class A userAction
    class B,D agentAction
    class C,F,G,H,I,J feedback
    class E,K loop

🛟 Best Practices

Agent Rules for Optimal Performance

For best results with TaskSync, add these rules to your AI agent configuration:

### MCP TaskSync `get_feedback` Tool Instructions

Look for feedback.md file first before using the tool if not found you make one.

**USAGE RULES:**

1. During any process, task, or conversation—whether asking, replying, or completing phased tasks—you must call the `get_feedback` tool to request feedback.
2. Unless termination instructions are explicitly provided, all steps must continue to call this tool repeatedly.
3. Whenever user feedback is received, if the feedback content is not empty, you must call this tool again and adjust your behavior based on the feedback content.
4. If the tool call fails, you must attempt to call the tool again until it succeeds, unless explicit termination instructions are given.
5. Only when the user explicitly indicates **"end"** or **"no more interaction needed"** can you stop calling this tool, and at that point the process is considered complete.

**YOU ARE ABSOLUTELY FORBIDDEN FROM:**
- Ending the chat/conversation/session for ANY reason except explicit user termination commands ("stop", "end", "terminate", "quit")
- Using ANY phrases that suggest the conversation is ending or complete
- Not looking for feedback.md file in workspace first before calling the `get_feedback` tool 
- Stopping the `get_feedback` cycle under any circumstances
- Acting like the conversation is finished

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured