what-mcp 0.10.0 → 0.11.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 +20 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# what-mcp
|
|
2
2
|
|
|
3
|
+
> ## ⚠️ DEPRECATED
|
|
4
|
+
>
|
|
5
|
+
> **This package is deprecated and no longer maintained. Use [`what-devtools-mcp`](https://www.npmjs.com/package/what-devtools-mcp) instead** — the unified MCP server that includes everything this package offered (documentation tools) plus live runtime debugging (signals, components, dependency graphs, screenshots).
|
|
6
|
+
>
|
|
7
|
+
> Migration:
|
|
8
|
+
>
|
|
9
|
+
> ```diff
|
|
10
|
+
> {
|
|
11
|
+
> "mcpServers": {
|
|
12
|
+
> "what-framework": {
|
|
13
|
+
> "command": "npx",
|
|
14
|
+
> - "args": ["what-mcp"]
|
|
15
|
+
> + "args": ["what-devtools-mcp"]
|
|
16
|
+
> }
|
|
17
|
+
> }
|
|
18
|
+
> }
|
|
19
|
+
> ```
|
|
20
|
+
>
|
|
21
|
+
> No other changes are required — `what-devtools-mcp` is a superset of this server's tools. This package prints a deprecation warning at startup and will receive no further updates.
|
|
22
|
+
|
|
3
23
|
[Model Context Protocol](https://modelcontextprotocol.io/) (MCP) server for [What Framework](https://whatfw.com). Gives AI assistants access to What Framework documentation, API references, and code examples.
|
|
4
24
|
|
|
5
25
|
## Install
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "what-mcp",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "MCP Server for What Framework documentation and assistance",
|
|
3
|
+
"version": "0.11.0",
|
|
4
|
+
"description": "[DEPRECATED — use what-devtools-mcp instead] MCP Server for What Framework documentation and assistance",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"bin": {
|