drio
Open app

Tasker MCP

Source

An MCP server for Android's Tasker automation app.

Catalog onlyCatalog onlySTDIO

Overview

Tasker MCP is a server designed for the Tasker automation app on Android, enabling users to automate tasks and integrate various tools seamlessly.

To use Tasker MCP, import the provided Tasker profile into your Tasker app, generate an API key, and run the server using the appropriate CLI binary for your device.

  • Integration with Tasker for automation tasks - Support for multiple transport modes (SSE and stdio) - Customizable tool definitions through JSON files
  1. Automating notifications and alerts on Android devices.
  2. Integrating third-party tools with Tasker for enhanced functionality.
  3. Running custom scripts and commands through Tasker.

Add to your AI client

Use these steps to connect Tasker MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "tasker-mcp-dceluis": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tasker-mcp-dceluis"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "tasker-mcp-dceluis": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tasker-mcp-dceluis"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "tasker-mcp-dceluis": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tasker-mcp-dceluis"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "tasker-mcp-dceluis": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tasker-mcp-dceluis"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "tasker-mcp-dceluis": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tasker-mcp-dceluis"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "tasker-mcp-dceluis": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tasker-mcp-dceluis"
      ]
    }
  }
}

FAQ

Can Tasker MCP work with any Android device?

Yes! As long as the device supports the Tasker app, Tasker MCP can be used.

Is there a cost to use Tasker MCP?

Tasker MCP is open-source and free to use under the MIT license.

How do I troubleshoot connection issues?

Ensure that the server is running and that the correct API key is being used in your Tasker profile.