mcp-devutils 1.1.0 → 1.1.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.
- package/README.md +5 -0
- package/package.json +17 -2
package/README.md
CHANGED
|
@@ -150,6 +150,11 @@ Compare two semantic versions:
|
|
|
150
150
|
- `version2`: Second version (required), e.g. `2.0.0`
|
|
151
151
|
- Returns comparison result and parsed components
|
|
152
152
|
|
|
153
|
+
## See Also
|
|
154
|
+
|
|
155
|
+
- [mcp-apitools](https://www.npmjs.com/package/mcp-apitools) — 8 API & web dev utilities: HTTP status codes, MIME types, JWT creation, mock data, CORS headers, cookie parsing
|
|
156
|
+
- [mcp-texttools](https://www.npmjs.com/package/mcp-texttools) — 10 text transformation tools: case convert, slugify, word count, lorem ipsum, regex replace, markdown strip
|
|
157
|
+
|
|
153
158
|
## License
|
|
154
159
|
|
|
155
160
|
MIT — [Hong Teoh](https://github.com/hlteoh37)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-devutils",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "MCP server with 13 developer utilities - UUID, hash, HMAC, base64, timestamps, JWT decode, random strings, URL encode/decode, JSON format, regex test, cron explain, color convert, semver compare",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -10,7 +10,22 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"start": "node index.js"
|
|
12
12
|
},
|
|
13
|
-
"keywords": [
|
|
13
|
+
"keywords": [
|
|
14
|
+
"mcp",
|
|
15
|
+
"model-context-protocol",
|
|
16
|
+
"developer-tools",
|
|
17
|
+
"utilities",
|
|
18
|
+
"uuid",
|
|
19
|
+
"hash",
|
|
20
|
+
"hmac",
|
|
21
|
+
"base64",
|
|
22
|
+
"jwt",
|
|
23
|
+
"claude",
|
|
24
|
+
"cursor",
|
|
25
|
+
"cron",
|
|
26
|
+
"color-convert",
|
|
27
|
+
"semver"
|
|
28
|
+
],
|
|
14
29
|
"author": "Hong Teoh",
|
|
15
30
|
"license": "MIT",
|
|
16
31
|
"funding": {
|