Quick Start

1

Get Your API Key

You'll need an API key from your task management service to authenticate requests.

2

Configure Your Client

For Cursor users: Click the "Add to Cursor" button above, then append your API key to the URL in the configuration dialog.

For Claude Desktop:

{
  "task-manager": {
    "command": "npx",
    "args": [
      "mcp-remote",
      "https://task-mcp-server.aayushpokharel9029.workers.dev/sse?apiKey=YOUR_API_KEY"
    ]
  }
}

For Cursor:

{
  "mcpServers": {
    "task-manager": {
      "url": "https://task-mcp-server.aayushpokharel9029.workers.dev/sse?apiKey=YOUR_API_KEY"
    }
  }
}

⚠️ Replace YOUR_API_KEY with your actual API key in either configuration.

3

Start Using Tools

Once connected, you can ask Claude to manage your tasks using natural language. Try commands like:

  • "Show me all my tasks"
  • "Create a high priority task to review the quarterly report"
  • "Mark task #123 as completed"

Available Tools

These tools are available through the MCP protocol. Ask Claude to use them naturally in conversation:

  • list_tasks – List all your tasks
  • create_task – Create a new task with title, description, status, and priority
  • get_task – Get details of a specific task by ID
  • update_task – Update an existing task
  • delete_task – Delete a task

API Endpoints

The server provides the following endpoints for MCP communication:

GET /sse Server-Sent Events endpoint for MCP communication
POST /sse Handle MCP tool calls and receive responses