driggsby 0.1.27 → 0.1.32
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 +16 -15
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,39 +1,40 @@
|
|
|
1
1
|
# driggsby
|
|
2
2
|
|
|
3
|
-
`driggsby`
|
|
3
|
+
`driggsby` helps configure AI clients to connect directly to Driggsby over MCP.
|
|
4
4
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
npx driggsby@latest mcp setup
|
|
9
|
-
npx driggsby@latest status
|
|
10
|
-
npx driggsby@latest mcp list
|
|
11
9
|
```
|
|
12
10
|
|
|
13
|
-
Run `mcp setup` once for each MCP client you want to use.
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
Run `mcp setup` once for each MCP client you want to use. Your AI client handles
|
|
12
|
+
OAuth with Driggsby when it connects to:
|
|
13
|
+
|
|
14
|
+
```text
|
|
15
|
+
https://app.driggsby.com/mcp
|
|
16
|
+
```
|
|
16
17
|
|
|
17
18
|
For supported clients, you can set up directly:
|
|
18
19
|
|
|
19
20
|
```bash
|
|
20
21
|
npx driggsby@latest mcp setup claude-code
|
|
21
|
-
npx driggsby@latest mcp setup claude-desktop
|
|
22
22
|
npx driggsby@latest mcp setup codex
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
Claude
|
|
26
|
-
|
|
27
|
-
Claude Code MCP scope can be set explicitly. Driggsby defaults Claude Code
|
|
28
|
-
setup to user scope.
|
|
25
|
+
Claude Code MCP scope can be set explicitly with `-s`. Driggsby defaults
|
|
26
|
+
Claude Code setup to user scope.
|
|
29
27
|
|
|
30
28
|
```bash
|
|
31
|
-
npx driggsby@latest mcp setup claude-code
|
|
32
|
-
npx driggsby@latest mcp setup claude-code
|
|
29
|
+
npx driggsby@latest mcp setup claude-code -s user
|
|
30
|
+
npx driggsby@latest mcp setup claude-code -s local
|
|
33
31
|
```
|
|
34
32
|
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
Print the native client command without running it:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npx driggsby@latest mcp setup codex --print
|
|
37
|
+
```
|
|
37
38
|
|
|
38
39
|
## License
|
|
39
40
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "driggsby",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.32",
|
|
4
|
+
"description": "CLI helper for configuring Driggsby MCP clients",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": "https://github.com/thegoodsoftwareco/driggsby-cli",
|
|
7
7
|
"type": "module",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"package.json"
|
|
25
25
|
],
|
|
26
26
|
"driggsbyArtifacts": {
|
|
27
|
-
"baseUrl": "https://github.com/thegoodsoftwareco/driggsby-cli/releases/download/driggsby-v0.1.
|
|
27
|
+
"baseUrl": "https://github.com/thegoodsoftwareco/driggsby-cli/releases/download/driggsby-v0.1.32",
|
|
28
28
|
"checksums": {
|
|
29
|
-
"driggsby-aarch64-apple-darwin.tar.xz": "
|
|
30
|
-
"driggsby-x86_64-apple-darwin.tar.xz": "
|
|
31
|
-
"driggsby-aarch64-unknown-linux-gnu.tar.xz": "
|
|
32
|
-
"driggsby-x86_64-unknown-linux-gnu.tar.xz": "
|
|
29
|
+
"driggsby-aarch64-apple-darwin.tar.xz": "f7aaff1730160364b3e0602d87fc85327633108f64c02f1977b0ed4dcfad3e12",
|
|
30
|
+
"driggsby-x86_64-apple-darwin.tar.xz": "5fa3c7a25f5894f768cc35e029090709880814c9d69b41c63018d2ee84ca01b3",
|
|
31
|
+
"driggsby-aarch64-unknown-linux-gnu.tar.xz": "2b77d8fd6cd5d237b2c4fce9a26284221c974bef6d86315771a3fa6f30643689",
|
|
32
|
+
"driggsby-x86_64-unknown-linux-gnu.tar.xz": "51bb2a16c92d8d73587a7eb528e208a863f9c09fae55a6e291bf64c4b03f1ba8"
|
|
33
33
|
},
|
|
34
34
|
"supportedPlatforms": {
|
|
35
35
|
"aarch64-apple-darwin": {
|