-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
235 lines (235 loc) · 6.23 KB
/
manifest.json
File metadata and controls
235 lines (235 loc) · 6.23 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
{
"manifest_version": "0.3",
"name": "lightcms",
"display_name": "LightCMS",
"version": "3.3.1",
"description": "AI-native content management system with 41 MCP tools for creating, managing, and publishing website content through natural language.",
"long_description": "LightCMS is a lightweight, AI-native CMS built with Go and MongoDB Atlas. The MCP server provides complete website management: create and publish pages, manage templates, upload assets, customize themes, set up redirects, organize content with folders and collections, search and replace across your site, and track content versions with rollback capability. Connects via REST API with API key authentication \u2014 no direct database access needed.",
"author": {
"name": "Jon Radoff",
"url": "https://metavert.io"
},
"repository": {
"type": "git",
"url": "https://github.com/jonradoff/lightcms.git"
},
"homepage": "https://metavert.io",
"documentation": "https://github.com/jonradoff/lightcms/blob/master/README.md",
"support": "https://github.com/jonradoff/lightcms/issues",
"server": {
"type": "binary",
"entry_point": "bin/lightcms-mcp",
"mcp_config": {
"command": "${__dirname}/bin/lightcms-mcp",
"args": [],
"env": {
"LIGHTCMS_URL": "${user_config.server_url}",
"LIGHTCMS_API_KEY": "${user_config.api_key}"
}
}
},
"tools": [
{
"name": "list_content",
"description": "List all content items with optional filters"
},
{
"name": "get_content",
"description": "Get a content item by ID or path"
},
{
"name": "create_content",
"description": "Create a new content item from a template"
},
{
"name": "update_content",
"description": "Update an existing content item"
},
{
"name": "delete_content",
"description": "Soft-delete a content item"
},
{
"name": "restore_content",
"description": "Restore a deleted content item"
},
{
"name": "publish_content",
"description": "Publish a content item to the live site"
},
{
"name": "unpublish_content",
"description": "Remove a content item from the live site"
},
{
"name": "get_content_versions",
"description": "Get version history for a content item"
},
{
"name": "get_content_version",
"description": "Get a specific version of a content item"
},
{
"name": "revert_to_version",
"description": "Revert content to a previous version"
},
{
"name": "list_templates",
"description": "List all available content templates"
},
{
"name": "get_template",
"description": "Get template details by ID or slug"
},
{
"name": "create_template",
"description": "Create a new content template"
},
{
"name": "update_template",
"description": "Update an existing template"
},
{
"name": "delete_template",
"description": "Delete a template"
},
{
"name": "list_assets",
"description": "List all assets in the library"
},
{
"name": "get_asset",
"description": "Get asset metadata by ID or path"
},
{
"name": "upload_asset",
"description": "Upload a file to the asset library"
},
{
"name": "delete_asset",
"description": "Delete an asset"
},
{
"name": "list_asset_folders",
"description": "List all asset folder paths"
},
{
"name": "get_theme",
"description": "Get current theme settings"
},
{
"name": "update_theme",
"description": "Update theme colors, fonts, and HTML"
},
{
"name": "get_site_config",
"description": "Get site configuration"
},
{
"name": "update_site_config",
"description": "Update site configuration"
},
{
"name": "list_redirects",
"description": "List all URL redirects"
},
{
"name": "create_redirect",
"description": "Create a URL redirect"
},
{
"name": "update_redirect",
"description": "Update a redirect"
},
{
"name": "delete_redirect",
"description": "Delete a redirect"
},
{
"name": "list_folders",
"description": "List content folders"
},
{
"name": "get_folder",
"description": "Get folder details"
},
{
"name": "create_folder",
"description": "Create a content folder"
},
{
"name": "delete_folder",
"description": "Delete an empty folder"
},
{
"name": "list_collections",
"description": "List content collections"
},
{
"name": "get_collection",
"description": "Get collection details"
},
{
"name": "create_collection",
"description": "Create a content collection"
},
{
"name": "update_collection",
"description": "Update a collection"
},
{
"name": "delete_collection",
"description": "Delete a collection"
},
{
"name": "search_content",
"description": "Full-text search across all content"
},
{
"name": "search_replace_preview",
"description": "Preview search and replace results"
},
{
"name": "search_replace_execute",
"description": "Execute search and replace across content"
},
{
"name": "regenerate_all_content",
"description": "Regenerate all published static pages"
}
],
"keywords": [
"cms",
"content-management",
"website",
"publishing",
"templates",
"ai-native"
],
"license": "MIT",
"privacy_policies": [
"https://www.metavert.io/lightcms-privacy-policy"
],
"compatibility": {
"platforms": [
"darwin",
"linux"
]
},
"user_config": {
"server_url": {
"type": "string",
"title": "LightCMS Server URL",
"description": "The URL of your LightCMS instance (e.g., https://example.com or http://localhost:8082)",
"required": true,
"default": "http://localhost:8082"
},
"api_key": {
"type": "string",
"title": "API Key",
"description": "Your LightCMS API key. Create one in the admin panel at /cm \u2192 Settings \u2192 API Keys.",
"sensitive": true,
"required": true
}
}
}