@epic-web/workshop-mcp 6.54.0 → 6.54.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/dist/index.js +2 -10
- package/dist/prompts.js +4 -3
- package/dist/resources.js +26 -21
- package/dist/server-metadata.d.ts +476 -0
- package/dist/server-metadata.js +666 -0
- package/dist/tools.js +413 -314
- package/dist/utils.js +1 -1
- package/package.json +2 -2
package/dist/utils.js
CHANGED
|
@@ -4,7 +4,7 @@ import { getWorkshopRoot, init as initApps, } from '@epic-web/workshop-utils/app
|
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
export const workshopDirectoryInputSchema = z
|
|
6
6
|
.string()
|
|
7
|
-
.describe('
|
|
7
|
+
.describe('Absolute path to the workshop root directory. Passing a /playground path is allowed and will be normalized to the workshop root.');
|
|
8
8
|
async function isWorkshopDirectory(workshopDirectory) {
|
|
9
9
|
console.error('isWorkshopDirectory', workshopDirectory);
|
|
10
10
|
const packageJson = await safeReadFile(path.join(workshopDirectory, 'package.json'));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epic-web/workshop-mcp",
|
|
3
|
-
"version": "6.54.
|
|
3
|
+
"version": "6.54.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@epic-web/invariant": "^1.0.0",
|
|
38
|
-
"@epic-web/workshop-utils": "6.54.
|
|
38
|
+
"@epic-web/workshop-utils": "6.54.2",
|
|
39
39
|
"@mcp-ui/server": "^5.13.1",
|
|
40
40
|
"@modelcontextprotocol/sdk": "^1.21.1",
|
|
41
41
|
"@sentry/node": "^10.25.0",
|