@aiquants/html-to-markdown 0.1.6 → 0.1.7
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 +4 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -88,6 +88,7 @@ This package can be used as a Model Context Protocol (MCP) server, allowing AI a
|
|
|
88
88
|
"html-to-md": {
|
|
89
89
|
"command": "npx",
|
|
90
90
|
"args": [
|
|
91
|
+
"--package=@aiquants/html-to-markdown",
|
|
91
92
|
"aiq-html2md-mcp"
|
|
92
93
|
],
|
|
93
94
|
"type": "stdio"
|
|
@@ -95,7 +96,7 @@ This package can be used as a Model Context Protocol (MCP) server, allowing AI a
|
|
|
95
96
|
"html-to-md-streamable": {
|
|
96
97
|
"url": "http://127.0.0.1:4001/mcp",
|
|
97
98
|
"type": "http",
|
|
98
|
-
"_comment": "Note: You need to start the streamable MCP server separately using 'npx aiq-html2md-mcp-stream'"
|
|
99
|
+
"_comment": "Note: You need to start the streamable MCP server separately using 'npx --package=@aiquants/html-to-markdown aiq-html2md-mcp-stream'"
|
|
99
100
|
}
|
|
100
101
|
}
|
|
101
102
|
```
|
|
@@ -107,7 +108,7 @@ This package can be used as a Model Context Protocol (MCP) server, allowing AI a
|
|
|
107
108
|
"mcpServers": {
|
|
108
109
|
"html-to-markdown": {
|
|
109
110
|
"command": "npx",
|
|
110
|
-
"args": ["aiq-html2md-mcp"],
|
|
111
|
+
"args": ["--package=@aiquants/html-to-markdown", "aiq-html2md-mcp"],
|
|
111
112
|
"description": "Convert HTML content from URLs to Markdown format"
|
|
112
113
|
}
|
|
113
114
|
}
|
|
@@ -126,7 +127,7 @@ Alternatively, you can use npx to run without global installation:
|
|
|
126
127
|
|
|
127
128
|
```bash
|
|
128
129
|
# Using npx with the streamable server binary
|
|
129
|
-
npx aiq-html2md-mcp-stream
|
|
130
|
+
npx --package=@aiquants/html-to-markdown aiq-html2md-mcp-stream
|
|
130
131
|
```
|
|
131
132
|
|
|
132
133
|
#### MCP Tools Available
|