|
1 | 1 | { |
2 | 2 | "dxt_version": "0.1", |
3 | 3 | "name": "@contentful/mcp-server", |
4 | | - "version": "1.0.5", |
| 4 | + "version": "1.7.7", |
5 | 5 | "description": "MCP (Model Context Protocol) server for the Contentful Management API", |
6 | 6 | "author": { |
7 | 7 | "name": "Contentful" |
|
15 | 15 | "icon": "icon.png", |
16 | 16 | "server": { |
17 | 17 | "type": "node", |
18 | | - "entry_point": "build/index.js", |
| 18 | + "entry_point": "dist/index.js", |
19 | 19 | "mcp_config": { |
20 | 20 | "command": "node", |
21 | | - "args": ["${__dirname}/build/index.js"], |
| 21 | + "args": ["${__dirname}/dist/index.js"], |
22 | 22 | "env": { |
23 | 23 | "CONTENTFUL_HOST": "${user_config.CONTENTFUL_HOST}", |
24 | 24 | "CONTENTFUL_MANAGEMENT_ACCESS_TOKEN": "${user_config.CMA_TOKEN}", |
|
88 | 88 | "name": "delete_entry", |
89 | 89 | "description": "Remove entries" |
90 | 90 | }, |
| 91 | + { |
| 92 | + "name": "archive_entry", |
| 93 | + "description": "Archive entries that are no longer needed but should be preserved" |
| 94 | + }, |
| 95 | + { |
| 96 | + "name": "unarchive_entry", |
| 97 | + "description": "Restore archived entries for editing and publishing" |
| 98 | + }, |
91 | 99 | { |
92 | 100 | "name": "upload_asset", |
93 | 101 | "description": "Upload new assets" |
|
116 | 124 | "name": "delete_asset", |
117 | 125 | "description": "Remove assets" |
118 | 126 | }, |
| 127 | + { |
| 128 | + "name": "archive_asset", |
| 129 | + "description": "Archive assets that are no longer needed but should be preserved" |
| 130 | + }, |
| 131 | + { |
| 132 | + "name": "unarchive_asset", |
| 133 | + "description": "Restore archived assets for editing and publishing" |
| 134 | + }, |
119 | 135 | { |
120 | 136 | "name": "list_spaces", |
121 | 137 | "description": "List available spaces" |
|
144 | 160 | "name": "create_tag", |
145 | 161 | "description": "Create new tags" |
146 | 162 | }, |
| 163 | + { |
| 164 | + "name": "list_editor_interfaces", |
| 165 | + "description": "Get all editor interfaces of a space" |
| 166 | + }, |
| 167 | + { |
| 168 | + "name": "get_editor_interface", |
| 169 | + "description": "Get the editor interface for a specific content type" |
| 170 | + }, |
| 171 | + { |
| 172 | + "name": "update_editor_interface", |
| 173 | + "description": "Update the editor interface for a content type" |
| 174 | + }, |
| 175 | + { |
| 176 | + "name": "list_orgs", |
| 177 | + "description": "List all organizations the user has access to" |
| 178 | + }, |
| 179 | + { |
| 180 | + "name": "get_org", |
| 181 | + "description": "Get details of a specific organization" |
| 182 | + }, |
| 183 | + { |
| 184 | + "name": "create_concept_scheme", |
| 185 | + "description": "Create a new taxonomy concept scheme" |
| 186 | + }, |
| 187 | + { |
| 188 | + "name": "get_concept_scheme", |
| 189 | + "description": "Retrieve a specific taxonomy concept scheme" |
| 190 | + }, |
| 191 | + { |
| 192 | + "name": "list_concept_schemes", |
| 193 | + "description": "List taxonomy concept schemes in an organization" |
| 194 | + }, |
| 195 | + { |
| 196 | + "name": "update_concept_scheme", |
| 197 | + "description": "Update a taxonomy concept scheme" |
| 198 | + }, |
| 199 | + { |
| 200 | + "name": "delete_concept_scheme", |
| 201 | + "description": "Delete a taxonomy concept scheme" |
| 202 | + }, |
| 203 | + { |
| 204 | + "name": "create_concept", |
| 205 | + "description": "Create a new taxonomy concept" |
| 206 | + }, |
| 207 | + { |
| 208 | + "name": "get_concept", |
| 209 | + "description": "Retrieve a specific taxonomy concept" |
| 210 | + }, |
| 211 | + { |
| 212 | + "name": "list_concepts", |
| 213 | + "description": "List taxonomy concepts in an organization" |
| 214 | + }, |
| 215 | + { |
| 216 | + "name": "update_concept", |
| 217 | + "description": "Update a taxonomy concept" |
| 218 | + }, |
| 219 | + { |
| 220 | + "name": "delete_concept", |
| 221 | + "description": "Delete a taxonomy concept" |
| 222 | + }, |
| 223 | + { |
| 224 | + "name": "space_to_space_param_collection", |
| 225 | + "description": "Collect parameters for space to space migration workflow" |
| 226 | + }, |
| 227 | + { |
| 228 | + "name": "export_space", |
| 229 | + "description": "Export a space to a file" |
| 230 | + }, |
| 231 | + { |
| 232 | + "name": "import_space", |
| 233 | + "description": "Import a space from a file" |
| 234 | + }, |
| 235 | + { |
| 236 | + "name": "space_to_space_migration_handler", |
| 237 | + "description": "Enable or disable the space to space migration workflow" |
| 238 | + }, |
147 | 239 | { |
148 | 240 | "name": "create_ai_action", |
149 | 241 | "description": "Create custom AI-powered workflows" |
|
0 commit comments