Complete reference for all MCP Tools and Resources available in the TaskFlow MCP Server.
- Task Management Tools
- Board Management Tools
- AI-Powered Tools
- Template Management Tools
- Webhook Integration Tools
- Export Tools
- Resources
- Common Types
- Error Handling
Creates a new task.
Input Schema:
{
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Task title"
},
"description": {
"type": "string",
"description": "Task description (optional)"
},
"boardId": {
"type": "string",
"description": "Board ID"
},
"columnId": {
"type": "string",
"description": "Column ID"
},
"priority": {
"type": "string",
"enum": ["LOW", "MEDIUM", "HIGH", "CRITICAL"],
"description": "Task priority (optional, default: MEDIUM)"
},
"dueDate": {
"type": "string",
"description": "Due date in ISO 8601 format (optional)"
},
"labels": {
"type": "array",
"items": { "type": "string" },
"description": "Array of label strings (optional)"
}
},
"required": ["title", "boardId", "columnId"]
}Example Request:
{
"name": "create_task",
"arguments": {
"title": "Implement user authentication",
"description": "Add JWT-based authentication with refresh tokens",
"boardId": "board-1",
"columnId": "col-todo",
"priority": "HIGH",
"dueDate": "2025-11-15T23:59:59Z",
"labels": ["backend", "security"]
}
}Response:
{
"content": [{
"type": "text",
"text": "{\"id\":\"task-123\",\"title\":\"Implement user authentication\",\"priority\":\"HIGH\",\"status\":\"TODO\",\"created\":\"2025-11-09T10:00:00Z\"}"
}]
}Lists all tasks with optional filtering.
Input Schema:
{
"type": "object",
"properties": {
"boardId": {
"type": "string",
"description": "Filter by board ID (optional)"
},
"status": {
"type": "string",
"enum": ["TODO", "IN_PROGRESS", "DONE"],
"description": "Filter by status (optional)"
},
"priority": {
"type": "string",
"enum": ["LOW", "MEDIUM", "HIGH", "CRITICAL"],
"description": "Filter by priority (optional)"
}
}
}Example Request:
{
"name": "list_tasks",
"arguments": {
"boardId": "board-1",
"priority": "HIGH"
}
}Response:
{
"content": [{
"type": "text",
"text": "[{\"id\":\"task-123\",\"title\":\"High priority task 1\"},{\"id\":\"task-124\",\"title\":\"High priority task 2\"}]"
}]
}Retrieves detailed information about a specific task.
Input Schema:
{
"type": "object",
"properties": {
"taskId": {
"type": "string",
"description": "Task ID"
}
},
"required": ["taskId"]
}Example Request:
{
"name": "get_task",
"arguments": {
"taskId": "task-123"
}
}Response:
{
"content": [{
"type": "text",
"text": "{\"id\":\"task-123\",\"title\":\"Implement user authentication\",\"description\":\"Add JWT-based authentication\",\"priority\":\"HIGH\",\"status\":\"IN_PROGRESS\",\"subtasks\":[],\"labels\":[\"backend\"]}"
}]
}Updates an existing task.
Input Schema:
{
"type": "object",
"properties": {
"taskId": {
"type": "string",
"description": "Task ID"
},
"title": {
"type": "string",
"description": "New title (optional)"
},
"description": {
"type": "string",
"description": "New description (optional)"
},
"status": {
"type": "string",
"enum": ["TODO", "IN_PROGRESS", "DONE"],
"description": "New status (optional)"
},
"priority": {
"type": "string",
"enum": ["LOW", "MEDIUM", "HIGH", "CRITICAL"],
"description": "New priority (optional)"
},
"columnId": {
"type": "string",
"description": "New column ID (optional)"
}
},
"required": ["taskId"]
}Example Request:
{
"name": "update_task",
"arguments": {
"taskId": "task-123",
"status": "IN_PROGRESS",
"priority": "CRITICAL"
}
}Response:
{
"content": [{
"type": "text",
"text": "{\"id\":\"task-123\",\"status\":\"IN_PROGRESS\",\"priority\":\"CRITICAL\",\"updated\":\"2025-11-09T11:00:00Z\"}"
}]
}Deletes a task.
Input Schema:
{
"type": "object",
"properties": {
"taskId": {
"type": "string",
"description": "Task ID"
}
},
"required": ["taskId"]
}Example Request:
{
"name": "delete_task",
"arguments": {
"taskId": "task-123"
}
}Response:
{
"content": [{
"type": "text",
"text": "Task task-123 deleted successfully"
}]
}Marks a task as completed.
Input Schema:
{
"type": "object",
"properties": {
"taskId": {
"type": "string",
"description": "Task ID"
}
},
"required": ["taskId"]
}Example Request:
{
"name": "complete_task",
"arguments": {
"taskId": "task-123"
}
}Response:
{
"content": [{
"type": "text",
"text": "{\"id\":\"task-123\",\"status\":\"DONE\",\"completed\":true,\"completedAt\":\"2025-11-09T12:00:00Z\"}"
}]
}Creates a new board.
Input Schema:
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Board name"
},
"description": {
"type": "string",
"description": "Board description (optional)"
},
"columns": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "string" },
"title": { "type": "string" }
}
},
"description": "Custom columns (optional, defaults provided)"
}
},
"required": ["name"]
}Example Request:
{
"name": "create_board",
"arguments": {
"name": "Q1 2025 Goals",
"description": "Quarterly planning board",
"columns": [
{ "id": "col-backlog", "title": "Backlog" },
{ "id": "col-progress", "title": "In Progress" },
{ "id": "col-done", "title": "Done" }
]
}
}Response:
{
"content": [{
"type": "text",
"text": "{\"id\":\"board-456\",\"name\":\"Q1 2025 Goals\",\"columns\":[...],\"created\":\"2025-11-09T10:00:00Z\"}"
}]
}Lists all boards.
Input Schema:
{
"type": "object",
"properties": {}
}Example Request:
{
"name": "list_boards",
"arguments": {}
}Response:
{
"content": [{
"type": "text",
"text": "[{\"id\":\"board-456\",\"name\":\"Q1 2025 Goals\",\"taskCount\":12}]"
}]
}Retrieves detailed information about a specific board.
Input Schema:
{
"type": "object",
"properties": {
"boardId": {
"type": "string",
"description": "Board ID"
}
},
"required": ["boardId"]
}Example Request:
{
"name": "get_board",
"arguments": {
"boardId": "board-456"
}
}Response:
{
"content": [{
"type": "text",
"text": "{\"id\":\"board-456\",\"name\":\"Q1 2025 Goals\",\"columns\":[...],\"tasks\":[...]}"
}]
}Deletes a board and all its tasks.
Input Schema:
{
"type": "object",
"properties": {
"boardId": {
"type": "string",
"description": "Board ID"
}
},
"required": ["boardId"]
}Example Request:
{
"name": "delete_board",
"arguments": {
"boardId": "board-456"
}
}Response:
{
"content": [{
"type": "text",
"text": "Board board-456 and all associated tasks deleted successfully"
}]
}Breaks down a complex task into smaller subtasks using AI.
Input Schema:
{
"type": "object",
"properties": {
"taskDescription": {
"type": "string",
"description": "Description of the task to break down"
},
"strategy": {
"type": "string",
"enum": ["simple", "detailed", "sprint"],
"description": "Breakdown strategy (optional, default: simple)"
},
"context": {
"type": "string",
"description": "Additional context (optional)"
}
},
"required": ["taskDescription"]
}Example Request:
{
"name": "ai_breakdown_task",
"arguments": {
"taskDescription": "Build a user authentication system",
"strategy": "detailed",
"context": "Using Node.js, Express, and JWT"
}
}Response:
{
"content": [{
"type": "text",
"text": "{\"subtasks\":[{\"title\":\"Setup authentication endpoints\",\"priority\":\"HIGH\"},{\"title\":\"Implement JWT token generation\",\"priority\":\"HIGH\"},{\"title\":\"Add refresh token logic\",\"priority\":\"MEDIUM\"}],\"strategy\":\"detailed\"}"
}]
}Creates a task from natural language description.
Input Schema:
{
"type": "object",
"properties": {
"input": {
"type": "string",
"description": "Natural language task description"
},
"boardId": {
"type": "string",
"description": "Target board ID (optional)"
}
},
"required": ["input"]
}Example Request:
{
"name": "ai_create_from_natural_language",
"arguments": {
"input": "urgent: fix login bug by tomorrow, assign to backend team",
"boardId": "board-456"
}
}Response:
{
"content": [{
"type": "text",
"text": "{\"id\":\"task-789\",\"title\":\"Fix login bug\",\"priority\":\"CRITICAL\",\"dueDate\":\"2025-11-10T23:59:59Z\",\"labels\":[\"backend\",\"urgent\"]}"
}]
}Optimizes task scheduling for a board.
Input Schema:
{
"type": "object",
"properties": {
"boardId": {
"type": "string",
"description": "Board ID to optimize"
},
"constraints": {
"type": "object",
"description": "Scheduling constraints (optional)"
}
},
"required": ["boardId"]
}Example Request:
{
"name": "ai_optimize_schedule",
"arguments": {
"boardId": "board-456",
"constraints": {
"workHoursPerDay": 8,
"prioritizeDeadlines": true
}
}
}Response:
{
"content": [{
"type": "text",
"text": "{\"optimizedSchedule\":[{\"date\":\"2025-11-09\",\"tasks\":[\"task-789\",\"task-790\"]},{\"date\":\"2025-11-10\",\"tasks\":[\"task-791\"]}],\"suggestions\":[\"Move task-792 to next week\"]}"
}]
}Recommends the next task to work on.
Input Schema:
{
"type": "object",
"properties": {
"boardId": {
"type": "string",
"description": "Board ID for recommendations (optional)"
},
"preferences": {
"type": "object",
"description": "User preferences (optional)"
}
}
}Example Request:
{
"name": "ai_recommend_next_task",
"arguments": {
"boardId": "board-456",
"preferences": {
"prioritizeUrgent": true,
"skillLevel": "senior"
}
}
}Response:
{
"content": [{
"type": "text",
"text": "{\"recommendedTask\":{\"id\":\"task-789\",\"title\":\"Fix login bug\",\"reason\":\"Critical priority with approaching deadline\"},\"alternatives\":[{\"id\":\"task-790\",\"title\":\"Review PR #123\"}]}"
}]
}Creates a new task template.
Input Schema:
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Template name"
},
"description": {
"type": "string",
"description": "Template description (optional)"
},
"category": {
"type": "string",
"description": "Template category (optional)"
},
"taskTemplate": {
"type": "object",
"description": "Task template structure"
}
},
"required": ["name", "taskTemplate"]
}Example Request:
{
"name": "create_template",
"arguments": {
"name": "Bug Report",
"description": "Standard bug report template",
"category": "development",
"taskTemplate": {
"title": "Bug: [Description]",
"priority": "HIGH",
"labels": ["bug"],
"description": "Steps to reproduce:\nExpected behavior:\nActual behavior:"
}
}
}Response:
{
"content": [{
"type": "text",
"text": "{\"id\":\"template-101\",\"name\":\"Bug Report\",\"category\":\"development\",\"created\":\"2025-11-09T10:00:00Z\"}"
}]
}Lists all templates with optional filtering.
Input Schema:
{
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "Filter by category (optional)"
}
}
}Example Request:
{
"name": "list_templates",
"arguments": {
"category": "development"
}
}Response:
{
"content": [{
"type": "text",
"text": "[{\"id\":\"template-101\",\"name\":\"Bug Report\",\"category\":\"development\"}]"
}]
}Retrieves detailed information about a template.
Input Schema:
{
"type": "object",
"properties": {
"templateId": {
"type": "string",
"description": "Template ID"
}
},
"required": ["templateId"]
}Creates a task from a template.
Input Schema:
{
"type": "object",
"properties": {
"templateId": {
"type": "string",
"description": "Template ID"
},
"boardId": {
"type": "string",
"description": "Target board ID"
},
"columnId": {
"type": "string",
"description": "Target column ID"
},
"overrides": {
"type": "object",
"description": "Override template values (optional)"
}
},
"required": ["templateId", "boardId", "columnId"]
}Deletes a template.
Input Schema:
{
"type": "object",
"properties": {
"templateId": {
"type": "string",
"description": "Template ID"
}
},
"required": ["templateId"]
}Creates a new webhook.
Input Schema:
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "Webhook URL"
},
"events": {
"type": "array",
"items": {
"type": "string",
"enum": ["TASK_CREATED", "TASK_UPDATED", "TASK_DELETED", "TASK_COMPLETED"]
},
"description": "Events to subscribe to"
},
"active": {
"type": "boolean",
"description": "Active status (optional, default: true)"
}
},
"required": ["url", "events"]
}Example Request:
{
"name": "create_webhook",
"arguments": {
"url": "https://example.com/webhook",
"events": ["TASK_CREATED", "TASK_COMPLETED"],
"active": true
}
}Lists all webhooks.
Deletes a webhook.
Tests webhook delivery.
Retrieves webhook statistics.
Retrieves webhook delivery history.
Exports a board to GitHub-flavored Markdown.
Input Schema:
{
"type": "object",
"properties": {
"boardId": {
"type": "string",
"description": "Board ID to export"
},
"includeCompleted": {
"type": "boolean",
"description": "Include completed tasks (optional, default: true)"
}
},
"required": ["boardId"]
}Example Request:
{
"name": "export_board_markdown",
"arguments": {
"boardId": "board-456",
"includeCompleted": false
}
}Response:
# Q1 2025 Goals
## Backlog
- [ ] Task 1 (HIGH)
- [ ] Task 2 (MEDIUM)
## In Progress
- [ ] Task 3 (CRITICAL)List all tasks
Get task details
List all boards
Get board details
List all templates
Get template details
List all webhooks
Get webhook statistics
{
id: string;
title: string;
description?: string;
status: 'TODO' | 'IN_PROGRESS' | 'DONE';
priority: 'LOW' | 'MEDIUM' | 'HIGH' | 'CRITICAL';
boardId: string;
columnId: string;
labels?: string[];
dueDate?: string;
completed: boolean;
created: string;
updated: string;
}{
id: string;
name: string;
description?: string;
columns: Column[];
created: string;
}All tools return errors in this format:
{
"content": [{
"type": "text",
"text": "Error message describing what went wrong"
}],
"isError": true
}Common error codes:
TASK_NOT_FOUND- Task ID not foundBOARD_NOT_FOUND- Board ID not foundVALIDATION_ERROR- Invalid inputINTERNAL_ERROR- Server error
Last Updated: 2025-11-09 Version: 2.0.0