devtoolkit-mcp 0.1.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/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "devtoolkit-mcp",
3
+ "version": "0.1.0",
4
+ "description": "25+ developer utilities as an MCP server — JSON repair, SQL format, hash, encode/decode, UUID, regex, CSV transform, subnet calc, and more. No API keys. Runs locally.",
5
+ "type": "module",
6
+ "bin": {
7
+ "devtoolkit-mcp": "./dist/index.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "files": [
11
+ "dist/",
12
+ "README.md",
13
+ "smithery.yaml"
14
+ ],
15
+ "scripts": {
16
+ "build": "tsup",
17
+ "dev": "tsup --watch",
18
+ "inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
19
+ "type-check": "tsc --noEmit",
20
+ "prepublishOnly": "npm run build"
21
+ },
22
+ "keywords": [
23
+ "mcp",
24
+ "mcp-server",
25
+ "model-context-protocol",
26
+ "developer-tools",
27
+ "devtoolkit",
28
+ "json",
29
+ "sql",
30
+ "hash",
31
+ "uuid",
32
+ "regex",
33
+ "csv",
34
+ "base64",
35
+ "jwt",
36
+ "cron",
37
+ "ai-tools",
38
+ "claude",
39
+ "coding4pizza"
40
+ ],
41
+ "author": "Coding4Pizza",
42
+ "license": "MIT",
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "https://github.com/emtyty/devtool"
46
+ },
47
+ "homepage": "https://coding4pizza.com",
48
+ "bugs": {
49
+ "url": "https://github.com/emtyty/devtool/issues"
50
+ },
51
+ "engines": {
52
+ "node": ">=18"
53
+ },
54
+ "dependencies": {
55
+ "@modelcontextprotocol/sdk": "^1.12.1",
56
+ "zod": "^3.24.4",
57
+ "sql-formatter": "^15.7.2",
58
+ "jsonrepair": "^3.13.2",
59
+ "@faker-js/faker": "^10.3.0"
60
+ },
61
+ "devDependencies": {
62
+ "tsup": "^8.4.0",
63
+ "typescript": "~5.8.2",
64
+ "@types/node": "^22.14.0"
65
+ }
66
+ }
package/smithery.yaml ADDED
@@ -0,0 +1,7 @@
1
+ startCommand:
2
+ type: stdio
3
+ configSchema:
4
+ type: object
5
+ properties: {}
6
+ commandFunction: |-
7
+ (config) => ({ command: 'npx', args: ['-y', 'devtoolkit-mcp@latest'] })