@taskade/mcp-server
v0.0.3
Published
MCP server for Taskade's public API
Downloads
437
Readme
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 [email protected]: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"
}
}
}