mcp-playbook 0.1.5 → 0.1.7
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 +3 -3
- package/package.json +41 -37
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="left">
|
|
2
2
|
|
|
3
|
-
<div align="center"> <img src="
|
|
3
|
+
<div align="center"> <img src="https://github.com/user-attachments/assets/7b8901ca-527e-496c-8fbd-0980b2491796" alt="MCP Playbook" width="80%" height="80%"/>
|
|
4
4
|
|
|
5
5
|
# MCP Playbook
|
|
6
6
|
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
|
18
|
-
<img src="
|
|
18
|
+
<img src="https://github.com/user-attachments/assets/7b8901ca-527e-496c-8fbd-0980b2491796" alt="MCP Playbook UI" width="50%" height="50%"/>
|
|
19
19
|
|
|
20
20
|
</div>
|
|
21
21
|
|
|
@@ -872,7 +872,7 @@ The config is watched automatically. If it is not updating, click the **↻ Refr
|
|
|
872
872
|
| Schema diff and changelog when tool definitions change | 🗓 Planned |
|
|
873
873
|
| **Authentication — OAuth 2.0 in the UI** | 🗓 Planned |
|
|
874
874
|
| Per-user auth for shared deployments | 🗓 Planned |
|
|
875
|
-
| Embeddable React component `<
|
|
875
|
+
| Embeddable React component `<MCPPlaybook />` | 🗓 Planned |
|
|
876
876
|
| VS Code extension integration | 🔭 Exploring |
|
|
877
877
|
| Hosted team sharing via URL (cloud version) | 🔭 Exploring |
|
|
878
878
|
| Mock mode — run without a real server | 🔭 Exploring |
|
package/package.json
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-playbook",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Playbook for MCP tools — auto-generates interactive docs and a live playground for your MCP servers",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"model-context-protocol",
|
|
8
|
+
"developer-tools",
|
|
9
|
+
"documentation",
|
|
10
|
+
"playground",
|
|
11
|
+
"playbook",
|
|
12
|
+
"storybook",
|
|
13
|
+
"documentation",
|
|
14
|
+
"ai-tools",
|
|
15
|
+
"cli"
|
|
16
|
+
],
|
|
7
17
|
"license": "MIT",
|
|
8
18
|
"author": {
|
|
9
19
|
"name": "Rahul Nag",
|
|
@@ -21,61 +31,55 @@
|
|
|
21
31
|
"bin": {
|
|
22
32
|
"mcp-playbook": "./bin/mcp-playbook.js"
|
|
23
33
|
},
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"types": "./dist/index.d.ts",
|
|
34
|
+
"main": "./dist/index.js",
|
|
35
|
+
"module": "./dist/index.mjs",
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
28
37
|
"exports": {
|
|
29
38
|
".": {
|
|
30
39
|
"require": "./dist/index.js",
|
|
31
|
-
"import":
|
|
32
|
-
"types":
|
|
40
|
+
"import": "./dist/index.mjs",
|
|
41
|
+
"types": "./dist/index.d.ts"
|
|
33
42
|
}
|
|
34
43
|
},
|
|
35
|
-
|
|
36
44
|
"files": [
|
|
37
45
|
"dist",
|
|
38
46
|
"bin",
|
|
39
47
|
"README.md",
|
|
40
48
|
"assets"
|
|
41
49
|
],
|
|
42
|
-
|
|
43
50
|
"scripts": {
|
|
44
|
-
"postinstall":
|
|
45
|
-
"dev":
|
|
46
|
-
"dev:client":
|
|
47
|
-
"build":
|
|
48
|
-
"build:server":
|
|
49
|
-
"build:client":
|
|
50
|
-
"typecheck":
|
|
51
|
+
"postinstall": "node ./bin/postinstall.js",
|
|
52
|
+
"dev": "tsup --watch",
|
|
53
|
+
"dev:client": "vite --config vite.client.config.ts",
|
|
54
|
+
"build": "npm run build:server && npm run build:client",
|
|
55
|
+
"build:server": "tsup",
|
|
56
|
+
"build:client": "vite build --config vite.client.config.ts",
|
|
57
|
+
"typecheck": "tsc --noEmit",
|
|
51
58
|
"prepublishOnly": "npm run build"
|
|
52
59
|
},
|
|
53
|
-
|
|
54
60
|
"dependencies": {
|
|
55
61
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
56
|
-
"chalk":
|
|
62
|
+
"chalk": "^5.0.0",
|
|
57
63
|
"chokidar": "^3.6.0",
|
|
58
|
-
"commander":"^12.0.0",
|
|
59
|
-
"express":
|
|
60
|
-
"open":
|
|
61
|
-
"ora":
|
|
62
|
-
"ws":
|
|
64
|
+
"commander": "^12.0.0",
|
|
65
|
+
"express": "^4.18.0",
|
|
66
|
+
"open": "^10.0.0",
|
|
67
|
+
"ora": "^8.0.0",
|
|
68
|
+
"ws": "^8.17.0"
|
|
63
69
|
},
|
|
64
|
-
|
|
65
70
|
"devDependencies": {
|
|
66
|
-
"@types/express":
|
|
67
|
-
"@types/node":
|
|
68
|
-
"@types/react":
|
|
69
|
-
"@types/react-dom":
|
|
70
|
-
"@types/ws":
|
|
71
|
+
"@types/express": "^4.17.21",
|
|
72
|
+
"@types/node": "^20.0.0",
|
|
73
|
+
"@types/react": "^18.0.0",
|
|
74
|
+
"@types/react-dom": "^18.0.0",
|
|
75
|
+
"@types/ws": "^8.5.10",
|
|
71
76
|
"@vitejs/plugin-react": "^4.0.0",
|
|
72
|
-
"react":
|
|
73
|
-
"react-dom":
|
|
74
|
-
"tsup":
|
|
75
|
-
"typescript":
|
|
76
|
-
"vite":
|
|
77
|
+
"react": "^18.0.0",
|
|
78
|
+
"react-dom": "^18.0.0",
|
|
79
|
+
"tsup": "^8.0.0",
|
|
80
|
+
"typescript": "^5.0.0",
|
|
81
|
+
"vite": "^5.0.0"
|
|
77
82
|
},
|
|
78
|
-
|
|
79
83
|
"engines": {
|
|
80
84
|
"node": ">=18.0.0"
|
|
81
85
|
}
|