You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Get a list of content from microCMS with filtering and search capabilities"
30
30
},
31
+
{
32
+
"name": "microcms_get_list_meta",
33
+
"description": "Get a list of contents with metadata from microCMS Management API. Use ONLY when user message contains \"メタ\" or \"メタ情報\". Returns metadata like status, createdBy, updatedBy, reservationTime, closedAt, and customStatus."
34
+
},
31
35
{
32
36
"name": "microcms_get_content",
33
37
"description": "Get a specific content item from microCMS"
34
38
},
39
+
{
40
+
"name": "microcms_get_content_meta",
41
+
"description": "Get a specific content with metadata from microCMS Management API. Use ONLY when user message contains \"メタ\" or \"メタ情報\". Returns metadata like status, createdBy, updatedBy, reservationTime, closedAt, and customStatus."
42
+
},
35
43
{
36
44
"name": "microcms_create_content_published",
37
45
"description": "Create new published content in microCMS"
@@ -52,6 +60,14 @@
52
60
"name": "microcms_patch_content",
53
61
"description": "Partially update content in microCMS"
54
62
},
63
+
{
64
+
"name": "microcms_patch_content_status",
65
+
"description": "Change content publication status in microCMS (Management API). Can change status between PUBLISH and DRAFT"
66
+
},
67
+
{
68
+
"name": "microcms_patch_content_created_by",
69
+
"description": "Change content creator in microCMS (Management API). Updates the createdBy field of a content item to a specified member ID"
70
+
},
55
71
{
56
72
"name": "microcms_delete_content",
57
73
"description": "Delete content from microCMS"
@@ -67,6 +83,18 @@
67
83
{
68
84
"name": "microcms_get_api_info",
69
85
"description": "Get API information from microCMS"
86
+
},
87
+
{
88
+
"name": "microcms_get_api_list",
89
+
"description": "Get list of all available APIs (endpoints) from microCMS Management API"
90
+
},
91
+
{
92
+
"name": "microcms_get_member",
93
+
"description": "Get a specific member from microCMS Management API. Returns member information including ID, name, email, and MFA status"
94
+
},
95
+
{
96
+
"name": "microcms_delete_media",
97
+
"description": "Delete media files from microCMS (Management API). Supports deletion of both images and files"
description: 'Delete media files from microCMS (Management API). Supports deletion of both images and files. Requires media deletion permissions. Note: Media referenced by content cannot be deleted.',
8
+
inputSchema: {
9
+
type: 'object',
10
+
properties: {
11
+
url: {
12
+
type: 'string',
13
+
description: 'URL of the media to delete (e.g., "https://images.microcms-assets.io/assets/xxxxx/yyyyy/hoge.jpg" or "https://files.microcms-assets.io/assets/xxxxx/yyyyy/hoge.pdf"). Custom domain URLs are also supported.',
description: 'Get a specific content with metadata from microCMS Management API. IMPORTANT: Use this tool ONLY when the user message contains "メタ" (meta) or "メタ情報" (metadata). This API returns metadata information such as status, createdBy, updatedBy, reservationTime, closedAt, and customStatus that are not available in the regular content API. For regular content retrieval, use microcms_get_content instead.',
8
+
inputSchema: {
9
+
type: 'object',
10
+
properties: {
11
+
endpoint: {
12
+
type: 'string',
13
+
description: 'Content type name (e.g., "blogs", "news")',
0 commit comments