We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 476ff03 commit ddfee4eCopy full SHA for ddfee4e
packages/server/README.md
@@ -2,7 +2,33 @@
2
3
MCP server for Taskade's public API
4
5
-## Manual setup
+## Install
6
+
7
+Add the taskade mcp server to your client (ie: Cursor):
8
9
+```json
10
11
12
+{
13
+ "mcpServers": {
14
+ "taskade": {
15
+ "command": "npx",
16
+ "args": [
17
+ "-y", "@taskade/mcp-server"
18
+ ],
19
+ "env": {
20
+ "TASKADE_API_KEY": "INSERT_YOUR_TASKADE_PERSONAL_ACCESS_TOKEN_HERE"
21
+ }
22
23
24
+}
25
+```
26
27
+> You will need a valid Taskade personal access token, generate one [here](https://www.taskade.com/settings/password)
28
29
30
31
+## Test locally
32
33
- Clone this repo: `git clone git@github.com:taskade/mcp.git`
34
- Install dependencies: `yarn install`
0 commit comments