@shortcut/mcp 0.2.0 → 0.3.0
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 +30 -0
- package/dist/index.js +21924 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -51,8 +51,38 @@ See the [official Cursor docs](https://docs.cursor.com/context/model-context-pro
|
|
|
51
51
|
}
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
+
### Claude Code
|
|
55
|
+
|
|
56
|
+
See the [official Claude Code docs](https://docs.anthropic.com/en/docs/agents-and-tools/claude-code/tutorials#set-up-model-context-protocol-mcp) for more information.
|
|
57
|
+
|
|
58
|
+
_You can add a new MCP server from the Claude Code CLI. But modifying the json file directly is simpler!_
|
|
59
|
+
|
|
60
|
+
1. Open the Claude Code configuration file (it should be in `~/.claude.json`).
|
|
61
|
+
2. Find the `projects` > `mcpServers` section and add the following details and save the file:
|
|
62
|
+
|
|
63
|
+
```json
|
|
64
|
+
{
|
|
65
|
+
"projects": {
|
|
66
|
+
"mcpServers": {
|
|
67
|
+
"shortcut": {
|
|
68
|
+
"command": "npx",
|
|
69
|
+
"args": [
|
|
70
|
+
"-y",
|
|
71
|
+
"@shortcut/mcp"
|
|
72
|
+
],
|
|
73
|
+
"env": {
|
|
74
|
+
"SHORTCUT_API_TOKEN": "<YOUR_SHORTCUT_API_TOKEN>"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
```
|
|
81
|
+
|
|
54
82
|
## Issues and Troubleshooting
|
|
55
83
|
|
|
84
|
+
Before doing anything else, please make sure you are running the latest version!
|
|
85
|
+
|
|
56
86
|
If you run into problems using this MCP server, you have a couple of options:
|
|
57
87
|
|
|
58
88
|
- Open an issue on [GitHub](https://github.com/useshortcut/mcp-server-shortcut/issues)
|