nicepick-mcp 1.0.0 → 1.0.1

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 +2 -0
  2. package/package.json +8 -3
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ <!-- mcp-name: io.github.zcor/nicepick -->
2
+
1
3
  # NicePick MCP — the verdict layer for AI agents
2
4
 
3
5
  Your docs tool (Context7) tells an agent how to use the library it *already chose*.
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "nicepick-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Opinionated 'which tool should I pick?' verdicts for AI agents — the decision layer next to your docs. 900+ structured tool/library/framework comparisons.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "nicepick-mcp": "index.mjs"
8
8
  },
9
9
  "main": "index.mjs",
10
- "files": ["index.mjs", "README.md"],
10
+ "files": [
11
+ "index.mjs",
12
+ "README.md"
13
+ ],
11
14
  "keywords": [
12
15
  "mcp",
13
16
  "model-context-protocol",
@@ -18,7 +21,9 @@
18
21
  "claude",
19
22
  "cursor"
20
23
  ],
21
- "engines": { "node": ">=18" },
24
+ "engines": {
25
+ "node": ">=18"
26
+ },
22
27
  "dependencies": {
23
28
  "@modelcontextprotocol/sdk": "^1.0.0"
24
29
  },