@pingux/astro 2.209.0-alpha.0 → 2.210.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.
- package/README.md +8 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -102,6 +102,14 @@ You will need to have the monorepo open at the root directory in VS Code for lin
|
|
|
102
102
|
Note: To make linting and highlighting work with Yarn 2, `yarn dlx @yarnpkg/sdks vscode` needs to be run in the root directory of the monorepo. If any changes are made to any
|
|
103
103
|
ESLint packages or versions these features may stop working. Run this command again to solve the issue. Be sure to commit the changes so others don't run into the same issue.
|
|
104
104
|
|
|
105
|
+
### Storybook MCP Server
|
|
106
|
+
|
|
107
|
+
Astro's Storybook includes [`@storybook/addon-mcp`](https://storybook.js.org/docs/ai/mcp/overview), which exposes an MCP (Model Context Protocol) server so AI coding agents can query accurate, up-to-date documentation about Astro's components while you're developing.
|
|
108
|
+
|
|
109
|
+
While Storybook is running locally on the default port, the MCP server is available at `http://localhost:6006/mcp`. After the next Chromatic publish (this happens automatically on merges to `develop`/`main` via the existing CI pipeline), the same MCP server becomes available at the published Chromatic build URL with `/mcp` appended, e.g. `https://www.chromatic.com/builds?appId=61323e1122472a003ab11df0/mcp`.
|
|
110
|
+
|
|
111
|
+
This endpoint is intentionally unauthenticated and publicly accessible, per product approval.
|
|
112
|
+
|
|
105
113
|
## Testing Local Changes in an External App
|
|
106
114
|
|
|
107
115
|
See the [Testing Local Changes in an External App](../../README.md#testing-local-changes-in-an-external-app) section in the root README for step-by-step instructions.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pingux/astro",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.210.0",
|
|
4
4
|
"description": "React component library for Ping Identity's design system",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -158,6 +158,7 @@
|
|
|
158
158
|
"@storybook/addon-console": "^3.0.0",
|
|
159
159
|
"@storybook/addon-designs": "^11.0.0",
|
|
160
160
|
"@storybook/addon-docs": "^10.2.8",
|
|
161
|
+
"@storybook/addon-mcp": "^0.7.0",
|
|
161
162
|
"@storybook/preset-scss": "^1.0.3",
|
|
162
163
|
"@storybook/react": "^10.2.8",
|
|
163
164
|
"@storybook/react-vite": "^10.2.8",
|