@shortcut/mcp 0.11.1 → 0.11.2
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 +9 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,6 +71,15 @@ See the [official Claude Code docs](https://docs.anthropic.com/en/docs/agents-an
|
|
|
71
71
|
|
|
72
72
|
_You can add a new MCP server from the Claude Code CLI. But modifying the json file directly is simpler!_
|
|
73
73
|
|
|
74
|
+
You can either add a new MCP server from the command line:
|
|
75
|
+
|
|
76
|
+
```shell
|
|
77
|
+
# Grab your Shortcut token here: https://app.shortcut.com/settings/account/api-tokens
|
|
78
|
+
claude mcp add shortcut --transport=stdio -e API_KEY=$SHORTCUT_API_TOKEN -- npx -y @shortcut/mcp@latest
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Or you can edit the local JSON file directly:
|
|
82
|
+
|
|
74
83
|
1. Open the Claude Code configuration file (it should be in `~/.claude.json`).
|
|
75
84
|
2. Find the `projects` > `mcpServers` section and add the following details and save the file:
|
|
76
85
|
|
package/dist/index.js
CHANGED