panel-todo-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., "@panel-todo-mcplist my current todos"
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.
Panel Todo MCP
MCP server for Panel Todo — lets AI assistants manage your tasks, issues, and sprints directly in VS Code.
Install
npm install -g panel-todo-mcpRelated MCP server: idea-base-mcp-server
Setup
Add to your MCP configuration (Claude Code, Cursor, etc.):
{
"mcpServers": {
"panel-todo": {
"command": "npx",
"args": ["panel-todo-mcp"],
"env": {
"PANEL_TODO_PROJECT_DIR": "/path/to/your/project"
}
}
}
}What It Does
Panel Todo is a VS Code extension that puts a todo list in your Panel area (next to Terminal and Problems). This MCP server gives AI assistants direct access to that task list.
Free tier: 5 tools for local todos stored in
.vscode/panel-todo.jsonPro tier: 38 tools for issues, sprints, projects, tags, and comments with cloud sync
Tools
Free Tier — Local Storage (5 tools)
Tool | Description |
| Add a new todo |
| List all todos |
| Update a todo's text |
| Mark a todo as complete |
| Remove a todo |
Configuration (2 tools)
Tool | Description |
| Set up Pro connection |
| Check configuration and Pro status |
Issues — Pro (8 tools)
Tool | Description |
| List all issues (filter by status/sprint) |
| Search issues with text query and filters |
| Get issue by ID or key (e.g., "PT-1") |
| Create a new issue |
| Create multiple issues at once |
| Update an issue |
| Mark issue as done |
| Delete an issue |
Sprints — Pro (9 tools)
Tool | Description |
| List all sprints |
| Get sprint details with issues |
| Create a new sprint |
| Update sprint name or dates |
| Start a sprint |
| Complete a sprint |
| Delete a sprint |
| Move an issue to a sprint |
| Get backlog issues |
Projects — Pro (4 tools)
Tool | Description |
| List all projects |
| Switch to a different project |
| Create a new project |
| Delete a project |
Tags — Pro (6 tools)
Tool | Description |
| List all tags |
| Create a new tag |
| Update a tag |
| Delete a tag |
| Add tag to issue |
| Remove tag from issue |
Comments — Pro (4 tools)
Tool | Description |
| List comments on an issue |
| Add a comment |
| Update a comment |
| Delete a comment |
Examples
Quick todos (Free)
// Add a task
panelTodo_add({ text: "Fix login bug" })
// Check your list
panelTodo_list()
// Done
panelTodo_complete({ id: "<id>" })Issue tracking (Pro)
// Create an issue
panelTodo_addIssue({
title: "Add dark mode support",
priority: "high"
})
// Returns: { issue: { key: "PT-3", id: "..." } }
// Start working on it
panelTodo_updateIssue({
issueId: "<id>",
status: "in_progress"
})
// Add notes
panelTodo_addComment({
issueId: "<id>",
content: "Using CSS variables for theming"
})
// Complete
panelTodo_completeIssue({ issueId: "<id>" })Sprint planning (Pro)
// Create a sprint
panelTodo_createSprint({
name: "Sprint 1",
startDate: "2024-01-15",
endDate: "2024-01-29"
})
// Add issues in bulk
panelTodo_batchCreateIssues({
sprintId: "<sprint-id>",
issues: [
{ title: "User authentication", priority: "high" },
{ title: "Password reset flow", priority: "medium" },
{ title: "Session management", priority: "medium" }
]
})
// Start the sprint
panelTodo_startSprint({ sprintId: "<sprint-id>" })Pro Configuration
To use Pro features:
panelTodo_configure({
projectId: "your-project-id",
token: "pt_your_api_token"
})Get your token from the Panel Todo VS Code extension: Account tab → Create API Token
For local development:
panelTodo_configure({
projectId: "your-project-id",
devMode: true,
devUserId: "test-user-id"
})Links
Panel Todo Extension — VS Code Marketplace
panel-todo.com — Pro subscription
GitHub — Source code
License
MIT
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
- Alicense-qualityCmaintenanceAn MCP server for end-to-end Jira and GitHub integration, enabling AI agents in the IDE to automate workflows from issue tracking to pull request management.Last updatedMIT
- Alicense-qualityBmaintenanceMCP server for IDEA Base — AI-powered project management. Manage projects, tasks, and time tracking directly from Claude Code, Cursor, or any MCP-compatible AI tool.Last updated12MIT
- FlicenseAqualityDmaintenanceA portable MCP server enabling AI assistants to operate VS Code, including file management, extension control, and workspace automation.Last updated6
- Flicense-qualityDmaintenanceAn MCP server for managing tasks in Cursor IDE, enabling AI agents to create, update, and comment on tasks via MCP tools, with a kanban dashboard and WebSocket events.Last updated1
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
MCP server for LeadDelta — manage LinkedIn connections and CRM data via AI assistants.
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/ingimar-eyfjord/panel-todo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server