We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 476ff03 commit 695e38cCopy full SHA for 695e38c
packages/server/README.md
@@ -2,7 +2,32 @@
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
10
+```json
11
+{
12
+ "mcpServers": {
13
+ "taskade": {
14
+ "command": "npx",
15
+ "args": [
16
+ "-y", "@taskade/mcp-server"
17
+ ],
18
+ "env": {
19
+ "TASKADE_API_KEY": "INSERT_YOUR_TASKADE_PERSONAL_ACCESS_TOKEN_HERE"
20
+ }
21
22
23
+}
24
+```
25
26
+> You will need a valid Taskade personal access token, generate one [here](https://www.taskade.com/settings/password)
27
28
29
30
+## Test locally
31
32
- Clone this repo: `git clone git@github.com:taskade/mcp.git`
33
- Install dependencies: `yarn install`
0 commit comments