-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 772 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "@langlangshan/code-tools-mcp",
"version": "1.0.0",
"description": "A utility MCP server providing JSON formatting, Base64/URL encoding, hashing, JWT decoding, regex testing, timestamp conversion, text transforms, color conversion, diff generation, and random generation — all accessible to AI agents via MCP.",
"type": "module",
"main": "index.js",
"bin": { "code-tools-mcp": "./index.js" },
"scripts": {
"start": "node index.js",
"test": "node -e \"console.log('Server module loaded successfully')\""
},
"keywords": ["mcp", "model-context-protocol", "developer-tools", "code-tools", "claude", "ai-agent"],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.4.3"
}
}