@shortcut/mcp 0.9.0 → 0.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -1
- package/dist/index.js +1358 -22712
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -1,10 +1,22 @@
|
|
|
1
1
|
# @shortcut/mcp
|
|
2
2
|
|
|
3
|
+
<img height="125" src="https://github.com/user-attachments/assets/7c3d3b8e-6252-4790-81cd-6640cd46a2d6" alt="Shortcut's logo" align="right">
|
|
4
|
+
|
|
5
|
+
[](https://badge.fury.io/js/@shortcut%2Fmcp)
|
|
6
|
+
[](https://www.npmjs.org/package/@shortcut%2Fmcp)
|
|
7
|
+
[](https://github.com/useshortcut/mcp-server-shortcut/blob/main/LICENSE)
|
|
8
|
+
[]()
|
|
9
|
+
[](https://twitter.com/intent/follow?screen_name=shortcut)
|
|
10
|
+
|
|
11
|
+
The MCP server for [Shortcut](https://shortcut.com).
|
|
12
|
+
|
|
13
|
+
<br />
|
|
14
|
+
|
|
3
15
|
## Usage
|
|
4
16
|
|
|
5
17
|
### Windsurf
|
|
6
18
|
|
|
7
|
-
See the [official Windsurf docs](https://
|
|
19
|
+
See the [official Windsurf docs](https://docs.windsurf.com/windsurf/cascade/mcp) for more information.
|
|
8
20
|
|
|
9
21
|
1. Open the `Windsurf MCP Configuration Panel`
|
|
10
22
|
2. Click `Add custom server`.
|
|
@@ -81,6 +93,29 @@ _You can add a new MCP server from the Claude Code CLI. But modifying the json f
|
|
|
81
93
|
}
|
|
82
94
|
```
|
|
83
95
|
|
|
96
|
+
### Zed
|
|
97
|
+
[Zed MCP Documentation](https://zed.dev/docs/ai/mcp)
|
|
98
|
+
1. Open your `settings.json` file. Instructions [here](https://zed.dev/docs/configuring-zed#settings-files)
|
|
99
|
+
2. Add the following details and save the file:
|
|
100
|
+
|
|
101
|
+
```json
|
|
102
|
+
"context_servers": {
|
|
103
|
+
"shortcut": {
|
|
104
|
+
"settings":{},
|
|
105
|
+
"command": {
|
|
106
|
+
"path": "<PATH/TO/NPX>",
|
|
107
|
+
"args": [
|
|
108
|
+
"-y",
|
|
109
|
+
"@shortcut/mcp@latest"
|
|
110
|
+
],
|
|
111
|
+
"env": {
|
|
112
|
+
"SHORTCUT_API_TOKEN": "<YOUR_SHORTCUT_API_TOKEN>"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
```
|
|
118
|
+
|
|
84
119
|
## Issues and Troubleshooting
|
|
85
120
|
|
|
86
121
|
Before doing anything else, please make sure you are running the latest version!
|