Sign In

@taskade/mcp-server

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@taskade/mcp-server

MCP server for Taskade's public API

latest
Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
187
-22.08%
Maintainers
4
Weekly downloads
 
Created
Source

Taskade MCP Server

MCP server for Taskade's public API

Install

Add the taskade mcp server to your client (ie: Cursor):

{
  "mcpServers": {
      "taskade": {
          "command": "npx",
          "args": [
              "-y", "@taskade/mcp-server"
          ],
          "env": {
              "TASKADE_API_KEY": "INSERT_YOUR_TASKADE_PERSONAL_ACCESS_TOKEN_HERE"
          }
      }
  }
}

You will need a valid Taskade personal access token, generate one here

Test locally

  • Clone this repo: git clone git@github.com:taskade/mcp.git
  • Install dependencies: yarn install
  • Build: yarn build
  • Install server on your MCP client.

For example, to install the server on Claude, edit your claude_desktop_config.json:

{
    "mcpServers": {
        "taskade": {
            "command": "node",
            "args": [
                "/path/to/taskade-mcp-repo"
            ],
            "env": {
                "TASKADE_API_KEY": "INSERT_YOUR_TASKADE_PERSONAL_ACCESS_TOKEN_HERE"
            }
        }
    }
}

You will need a valid Taskade personal access token, generate one here

Connect Via SSE/Streamable HTTP

For clients that support connecting MCP servers via SSE/Streamable HTTP (ie: Cursor):

  • Run the local server: yarn start:server
  • Add the SSE endpoint in your client config (ie: ~/.cursor/mcp.json):
{
    "mcpServers": {
        "taskade": {
            "url": "http://localhost:3000/sse?access_token=INSERT_YOUR_TASKADE_PERSONAL_ACCESS_TOKEN_HERE"
        }
    }
}

FAQs

Package last updated on 27 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts