@epic-web/workshop-mcp 6.45.6 → 6.46.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.
Files changed (2) hide show
  1. package/README.md +44 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,5 +1,46 @@
1
- # EpicShop MCP
1
+ # @epic-web/workshop-mcp
2
2
 
3
- Configure the MCP for your project with `npx -y @epic-web/workshop-mcp`.
3
+ An MCP (Model Context Protocol) server intended for use inside Epic Workshop
4
+ repositories.
4
5
 
5
- Ask your LLM what it can do. And it'll tell you.
6
+ It’s designed to help learners while working through workshop exercises. In most
7
+ workshops, the learner’s work-in-progress lives in the `playground` directory.
8
+
9
+ ## Install / run
10
+
11
+ You typically run this via `npx` from your AI assistant’s MCP configuration:
12
+
13
+ ```bash
14
+ npx -y @epic-web/workshop-mcp
15
+ ```
16
+
17
+ ## Example configuration
18
+
19
+ ### Claude Desktop / compatible clients
20
+
21
+ Add a server entry (shape varies slightly by client):
22
+
23
+ ```json
24
+ {
25
+ "mcpServers": {
26
+ "epicshop": {
27
+ "command": "npx",
28
+ "args": ["-y", "@epic-web/workshop-mcp"]
29
+ }
30
+ }
31
+ }
32
+ ```
33
+
34
+ ## Notes
35
+
36
+ - The server communicates over **stdio**.
37
+ - If you’re using this inside a workshop repo, run your editor/assistant with
38
+ the workshop as the working directory so the server can find the right files.
39
+
40
+ ## Documentation
41
+
42
+ - Repo docs: `https://github.com/epicweb-dev/epicshop/tree/main/docs`
43
+
44
+ ## License
45
+
46
+ GPL-3.0-only.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epic-web/workshop-mcp",
3
- "version": "6.45.6",
3
+ "version": "6.46.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@epic-web/invariant": "^1.0.0",
37
- "@epic-web/workshop-utils": "6.45.6",
37
+ "@epic-web/workshop-utils": "6.46.0",
38
38
  "@mcp-ui/server": "^5.13.1",
39
39
  "@modelcontextprotocol/sdk": "^1.21.1",
40
40
  "@sentry/node": "^10.25.0",