what-mcp 0.6.0 → 0.8.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/package.json +3 -2
  2. package/src/index.js +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "what-mcp",
3
- "version": "0.6.0",
3
+ "version": "0.8.0",
4
4
  "description": "MCP Server for What Framework documentation and assistance",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -27,5 +27,6 @@
27
27
  "bugs": {
28
28
  "url": "https://github.com/CelsianJs/what-framework/issues"
29
29
  },
30
- "homepage": "https://whatfw.com"
30
+ "homepage": "https://whatfw.com",
31
+ "deprecated": "Use what-devtools-mcp instead. This package is superseded by the unified MCP server."
31
32
  }
package/src/index.js CHANGED
@@ -1,8 +1,16 @@
1
1
  #!/usr/bin/env node
2
2
 
3
+ console.warn(
4
+ '[what-mcp] DEPRECATED: This package is superseded by what-devtools-mcp, ' +
5
+ 'which includes all documentation plus live devtools. ' +
6
+ 'Install what-devtools-mcp and remove what-mcp from your MCP config.'
7
+ );
8
+
3
9
  /**
4
10
  * What Framework MCP Server
5
11
  *
12
+ * @deprecated Use what-devtools-mcp instead. This package is superseded by the unified MCP server.
13
+ *
6
14
  * Provides documentation and assistance for the What Framework.
7
15
  * Exposes tools for getting API reference, examples, and guidance.
8
16
  */