@mizunashi_mana/mcp-html-artifacts-preview 0.5.0 → 1.0.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 +11 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,9 +8,9 @@ An MCP server that lets AI assistants instantly preview generated HTML in your b
|
|
|
8
8
|
|
|
9
9
|
## What is this?
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
An MCP server that receives HTML from your AI assistant and renders it in your browser instantly — with hot reload, a dashboard, and zero config.
|
|
12
12
|
|
|
13
|
-
Built on the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/), it works with any MCP-compatible AI assistant like Claude Code.
|
|
13
|
+
No more saving files and opening them manually. Built on the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/), it works with any MCP-compatible AI assistant like Claude Code.
|
|
14
14
|
|
|
15
15
|
## Features
|
|
16
16
|
|
|
@@ -65,6 +65,15 @@ Add to your MCP client configuration:
|
|
|
65
65
|
- Render Mermaid diagrams, flowcharts, and architecture diagrams
|
|
66
66
|
- Create interactive data visualizations during technical surveys
|
|
67
67
|
|
|
68
|
+
## Development
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
npm install
|
|
72
|
+
npm run build
|
|
73
|
+
npm run test
|
|
74
|
+
npm run lint
|
|
75
|
+
```
|
|
76
|
+
|
|
68
77
|
## License
|
|
69
78
|
|
|
70
79
|
This project is dual-licensed — you can choose either of the following:
|
package/package.json
CHANGED