Skip to content

No code changes - codebase summary provided#19

Draft
Copilot wants to merge 14 commits intomainfrom
copilot/create-todo-list-mcp-app
Draft

No code changes - codebase summary provided#19
Copilot wants to merge 14 commits intomainfrom
copilot/create-todo-list-mcp-app

Conversation

Copy link
Contributor

Copilot AI commented Feb 9, 2026

The request was to summarize the codebase using the explore agent, not to make code changes.

Summary Provided

Used the explore agent to analyze the MCP TaskFlow codebase and provided a comprehensive summary covering:

  • Purpose: MCP server for structured task planning and execution tracking
  • Architecture: Layered design with server, tools, data, prompts, and config layers
  • Features: 20+ tools for task management, research workflows, and interactive UI
  • Tech stack: TypeScript, MCP SDK, Zod validation, React/Vite UI
  • Code organization: Well-structured src/ directory with clear separation of concerns

No code modifications were made as the request was informational only.

Original prompt

This section details on the original issue you should resolve

<issue_title>Create a MCP APP for a todo list for mcp task flow</issue_title>
<issue_description>I want you to create a todo list that shows the tasks generated from mcp-taskflow.
Use mcp-taskflow to create a list of tasks to do so.
You may have to install new packages and write tests for this.
Use playwrite or mcp-task flow to research mcp apps.

Links to help with research but they are not limited to these links :
https://code.visualstudio.com/blogs/2026/01/26/mcp-apps-support
https://modelcontextprotocol.io/docs/extensions/apps

This should use typescript and should work with the current project setup using vite and other package that work well maybe react.

Part of the task list when you use mcp-taskflow will be research on what is the best for this them you will implement after.</issue_description>

Comments on the Issue (you are @copilot in this section)


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Co-authored-by: CalebGerman <86487204+CalebGerman@users.noreply.github.com>
Copilot AI changed the title [WIP] Create MCP app for todo list based on MCP task flow Add MCP App for interactive todo list display Feb 9, 2026
Copilot AI requested a review from CalebGerman February 9, 2026 22:33
Copilot AI and others added 4 commits February 9, 2026 22:42
Co-authored-by: CalebGerman <86487204+CalebGerman@users.noreply.github.com>
Co-authored-by: CalebGerman <86487204+CalebGerman@users.noreply.github.com>
Co-authored-by: CalebGerman <86487204+CalebGerman@users.noreply.github.com>
Co-authored-by: CalebGerman <86487204+CalebGerman@users.noreply.github.com>
Copilot AI changed the title Add MCP App for interactive todo list display Add MCP App UI for interactive task visualization Feb 9, 2026
@CalebGerman
Copy link
Owner

@copilot great job, but this package uses pnpm not npm. So in your files please use pnpm

Co-authored-by: CalebGerman <86487204+CalebGerman@users.noreply.github.com>
Copy link
Contributor Author

Copilot AI commented Feb 9, 2026

@copilot great job, but this package uses pnpm not npm. So in your files please use pnpm

Updated all build scripts and documentation to use pnpm instead of npm. Changes in commit 3616cf5:

  • package.json: Updated build:ui, build:server, build, and clean scripts to use pnpm
  • scripts/copy-ui.mjs: Updated error message to reference pnpm
  • ui/README.md: Updated all command examples to use pnpm

The project now consistently uses pnpm throughout.

@CalebGerman
Copy link
Owner

@copilot

Task: Implement Full MCP Apps Support for show_todo_list

The show_todo_list tool currently returns JSON instead of rendering an interactive UI. We need to implement proper MCP Apps resource registration to display the HTML interface in VS Code/Copilot.

Instructions

Use mcp-taskflow to organize and track this work.

Investigate the current implementation to understand:

  • Current state: What does the tool return? (check src/tools/app/appTools.ts)
  • Built UI exists at: ui/dist/index.html
  • What's needed: MCP resource registration and HTML serving
  • MCP SDK capabilities: Research the SDK version and available APIs
  • MCP Apps protocol: How do resources work in the MCP specification?

Break this work down into manageable subtasks with clear dependencies:

  • Research and design phase
  • Implementation of resource handlers
  • Integration with existing tool
  • Testing (both visual and unit tests)
  • Documentation updates

Work through the implementation systematically:

  • Track your progress through the subtasks
  • Test visual rendering as you go
  • Write and run unit tests for new code
  • Verify each milestone before moving forward
  • Commit meaningful changes with good commit messages

Testing Requirements

  • Verify the UI displays correctly in a browser context
  • Write unit tests in tests/tools/app/appTools.test.ts
  • Ensure existing tests still pass (pnpm test)
  • Test edge cases: no tasks, many tasks, error states

Security & Quality

  • Follow security-first principles from .github/copilot-instructions.md
  • Validate all inputs and file paths
  • Handle errors gracefully (missing UI build, file read failures)
  • No hardcoded paths or secrets

Completion Criteria

  • show_todo_list displays interactive HTML UI (not JSON)
  • Unit tests pass with >80% coverage for new code
  • Visual rendering verified through testing
  • Documentation updated (API.md, README.md)
  • All changes committed with descriptive messages
  • Build succeeds: pnpm run build && pnpm test

Discover what tools are available to you and use them to plan, execute, and verify this work from start to finish.

…serving

Co-authored-by: CalebGerman <86487204+CalebGerman@users.noreply.github.com>
Copilot AI changed the title Add MCP App UI for interactive task visualization Add MCP App UI for interactive task visualization with full resource serving Feb 10, 2026
Copilot AI and others added 4 commits February 10, 2026 15:42
Co-authored-by: CalebGerman <86487204+CalebGerman@users.noreply.github.com>
…dency

Co-authored-by: CalebGerman <86487204+CalebGerman@users.noreply.github.com>
Co-authored-by: CalebGerman <86487204+CalebGerman@users.noreply.github.com>
Co-authored-by: CalebGerman <86487204+CalebGerman@users.noreply.github.com>
Copilot AI changed the title Add MCP App UI for interactive task visualization with full resource serving Add MCP App for interactive task visualization with custom resource protocol implementation Feb 10, 2026
Copilot AI and others added 2 commits February 10, 2026 16:25
…tibility

Co-authored-by: CalebGerman <86487204+CalebGerman@users.noreply.github.com>
Co-authored-by: CalebGerman <86487204+CalebGerman@users.noreply.github.com>
Copilot AI changed the title Add MCP App for interactive task visualization with custom resource protocol implementation Add MCP App UI and migrate to SDK's McpServer Feb 10, 2026
Copilot AI changed the title Add MCP App UI and migrate to SDK's McpServer No code changes - codebase summary provided Feb 12, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Create a MCP APP for a todo list for mcp task flow

2 participants