-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 1.17 KB
/
manifest.json
File metadata and controls
33 lines (33 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"id": "devtools",
"name": "[SAMPLE] DevTools",
"version": "1.0.0",
"description": "Reference app for the Construct platform — a developer toolkit demonstrating MCP tools, reactive UI, and the Construct SDK.",
"author": {
"name": "Construct Team",
"url": "https://construct.computer"
},
"entry": "server.ts",
"runtime": "deno",
"transport": "stdio",
"icon": "icon.png",
"permissions": {},
"ui": {
"type": "static",
"entry": "ui/index.html",
"width": 560,
"height": 620,
"minWidth": 420,
"minHeight": 500
},
"categories": ["developer-tools"],
"tags": ["reference", "sample", "developer", "json", "base64", "hash", "uuid", "tools"],
"tools": [
{ "name": "json_format", "description": "Format, minify, or validate a JSON string" },
{ "name": "base64", "description": "Encode or decode a Base64 string" },
{ "name": "hash", "description": "Generate a SHA-256 hash of text" },
{ "name": "uuid", "description": "Generate one or more v4 UUIDs" },
{ "name": "timestamp", "description": "Convert between Unix timestamps and ISO dates" },
{ "name": "url_encode", "description": "URL-encode or decode a string" }
]
}