@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.
Files changed (2) hide show
  1. package/README.md +11 -2
  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
- When AI coding assistants generate HTML, CSS, or JavaScript, you usually need to manually save files and open them in a browser. This MCP server eliminates that friction your AI assistant sends HTML directly through MCP tools, and it appears in your browser instantly with hot-reload support.
11
+ An MCP server that receives HTML from your AI assistant and renders it in your browser instantlywith 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mizunashi_mana/mcp-html-artifacts-preview",
3
- "version": "0.5.0",
3
+ "version": "1.0.0",
4
4
  "description": "MCP server for previewing AI-generated HTML artifacts in the browser",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",