0.0.1 • Published 1 month ago

@taskade/mcp-server v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
1 month ago

Taskade MCP Server

MCP server for Taskade's public API

Manual setup

  • 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):

  1. Run the local server: yarn start:server
  2. 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"
        }
    }
}