@universal-mcp-toolkit/server-npm-registry 0.1.0 → 0.2.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.
@@ -30,4 +30,4 @@
30
30
  "prompts": [
31
31
  "release-plan"
32
32
  ]
33
- }
33
+ }
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 universal-mcp-toolkit
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 universal-mcp-toolkit
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,42 @@
1
+ Search the npm registry, inspect package details, and list recent versions.
2
+
3
+ ## What it can do
4
+ - `search_packages` — search npm for packages that match a text query.
5
+ - `get_package_metadata` — show package details like the latest version, dist-tags, maintainers, and version history.
6
+ - `list_package_versions` — list recent versions for a package and show its dist-tags.
7
+
8
+ ## Setup
9
+ No required env vars. You can run this server as-is.
10
+
11
+ ## Claude Desktop config
12
+ Add this to your Claude Desktop MCP config:
13
+
14
+ ```json
15
+ {
16
+ "mcpServers": {
17
+ "npm-registry": {
18
+ "command": "npx",
19
+ "args": ["-y", "@universal-mcp-toolkit/server-npm-registry@latest"],
20
+ "env": {}
21
+ }
22
+ }
23
+ }
24
+ ```
25
+
26
+ ## Cursor config
27
+ Add this to your Cursor MCP config:
28
+
29
+ ```json
30
+ {
31
+ "mcpServers": {
32
+ "npm-registry": {
33
+ "command": "npx",
34
+ "args": ["-y", "@universal-mcp-toolkit/server-npm-registry@latest"],
35
+ "env": {}
36
+ }
37
+ }
38
+ }
39
+ ```
40
+
41
+ ## Quick example
42
+ Ask Claude: "Search npm for markdown parser packages, pick a strong match, then show its latest version and the 5 most recent releases."
package/package.json CHANGED
@@ -1,18 +1,17 @@
1
1
  {
2
2
  "name": "@universal-mcp-toolkit/server-npm-registry",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "description": "Package metadata, search, and version tools for the npm registry.",
6
6
  "license": "MIT",
7
7
  "bin": {
8
- "server-npm-registry": "./dist/index.js",
9
8
  "umt-npm-registry": "./dist/index.js"
10
9
  },
11
10
  "repository": {
12
11
  "type": "git",
13
- "url": "git+https://github.com/Markgatcha/universal-mcp-toolkit.git"
12
+ "url": "git+https://github.com/universal-mcp-toolkit/universal-mcp-toolkit.git"
14
13
  },
15
- "homepage": "https://github.com/Markgatcha/universal-mcp-toolkit#readme",
14
+ "homepage": "https://github.com/universal-mcp-toolkit/universal-mcp-toolkit#readme",
16
15
  "exports": {
17
16
  ".": {
18
17
  "types": "./dist/index.d.ts",
@@ -36,12 +35,9 @@
36
35
  "versions"
37
36
  ],
38
37
  "dependencies": {
39
- "@universal-mcp-toolkit/core": "0.1.0",
38
+ "@universal-mcp-toolkit/core": "0.2.0",
40
39
  "zod": "^4.3.6"
41
40
  },
42
- "publishConfig": {
43
- "access": "public"
44
- },
45
41
  "scripts": {
46
42
  "build": "tsup src/index.ts --format esm --dts --clean",
47
43
  "dev": "tsx watch src/index.ts",