mcp-wordpress 1.1.7 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +388 -66
- package/dist/cache/CacheInvalidation.d.ts +118 -0
- package/dist/cache/CacheInvalidation.d.ts.map +1 -0
- package/dist/cache/CacheInvalidation.js +349 -0
- package/dist/cache/CacheInvalidation.js.map +1 -0
- package/dist/cache/CacheManager.d.ts +143 -0
- package/dist/cache/CacheManager.d.ts.map +1 -0
- package/dist/cache/CacheManager.js +308 -0
- package/dist/cache/CacheManager.js.map +1 -0
- package/dist/cache/HttpCacheWrapper.d.ts +121 -0
- package/dist/cache/HttpCacheWrapper.d.ts.map +1 -0
- package/dist/cache/HttpCacheWrapper.js +280 -0
- package/dist/cache/HttpCacheWrapper.js.map +1 -0
- package/dist/cache/__tests__/CacheInvalidation.test.d.ts +5 -0
- package/dist/cache/__tests__/CacheInvalidation.test.d.ts.map +1 -0
- package/dist/cache/__tests__/CacheInvalidation.test.js +236 -0
- package/dist/cache/__tests__/CacheInvalidation.test.js.map +1 -0
- package/dist/cache/__tests__/CacheManager.test.d.ts +5 -0
- package/dist/cache/__tests__/CacheManager.test.d.ts.map +1 -0
- package/dist/cache/__tests__/CacheManager.test.js +233 -0
- package/dist/cache/__tests__/CacheManager.test.js.map +1 -0
- package/dist/cache/__tests__/CachedWordPressClient.test.d.ts +5 -0
- package/dist/cache/__tests__/CachedWordPressClient.test.d.ts.map +1 -0
- package/dist/cache/__tests__/CachedWordPressClient.test.js +228 -0
- package/dist/cache/__tests__/CachedWordPressClient.test.js.map +1 -0
- package/dist/cache/__tests__/HttpCacheWrapper.test.d.ts +5 -0
- package/dist/cache/__tests__/HttpCacheWrapper.test.d.ts.map +1 -0
- package/dist/cache/__tests__/HttpCacheWrapper.test.js +296 -0
- package/dist/cache/__tests__/HttpCacheWrapper.test.js.map +1 -0
- package/dist/cache/index.d.ts +12 -0
- package/dist/cache/index.d.ts.map +1 -0
- package/dist/cache/index.js +9 -0
- package/dist/cache/index.js.map +1 -0
- package/dist/client/CachedWordPressClient.d.ts +160 -0
- package/dist/client/CachedWordPressClient.d.ts.map +1 -0
- package/dist/client/CachedWordPressClient.js +338 -0
- package/dist/client/CachedWordPressClient.js.map +1 -0
- package/dist/client/WordPressClient.d.ts +81 -0
- package/dist/client/WordPressClient.d.ts.map +1 -0
- package/dist/client/WordPressClient.js +354 -0
- package/dist/client/WordPressClient.js.map +1 -0
- package/dist/config/ConfigurationSchema.d.ts +281 -0
- package/dist/config/ConfigurationSchema.d.ts.map +1 -0
- package/dist/config/ConfigurationSchema.js +205 -0
- package/dist/config/ConfigurationSchema.js.map +1 -0
- package/dist/config/ServerConfiguration.d.ts +38 -0
- package/dist/config/ServerConfiguration.d.ts.map +1 -0
- package/dist/config/ServerConfiguration.js +158 -0
- package/dist/config/ServerConfiguration.js.map +1 -0
- package/dist/docs/DocumentationGenerator.d.ts +184 -0
- package/dist/docs/DocumentationGenerator.d.ts.map +1 -0
- package/dist/docs/DocumentationGenerator.js +735 -0
- package/dist/docs/DocumentationGenerator.js.map +1 -0
- package/dist/docs/MarkdownFormatter.d.ts +84 -0
- package/dist/docs/MarkdownFormatter.d.ts.map +1 -0
- package/dist/docs/MarkdownFormatter.js +448 -0
- package/dist/docs/MarkdownFormatter.js.map +1 -0
- package/dist/docs/index.d.ts +8 -0
- package/dist/docs/index.d.ts.map +1 -0
- package/dist/docs/index.js +7 -0
- package/dist/docs/index.js.map +1 -0
- package/dist/index.d.ts +1 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +12 -212
- package/dist/index.js.map +1 -1
- package/dist/performance/AnomalyDetector.d.ts +63 -0
- package/dist/performance/AnomalyDetector.d.ts.map +1 -0
- package/dist/performance/AnomalyDetector.js +222 -0
- package/dist/performance/AnomalyDetector.js.map +1 -0
- package/dist/performance/BenchmarkAnalyzer.d.ts +67 -0
- package/dist/performance/BenchmarkAnalyzer.d.ts.map +1 -0
- package/dist/performance/BenchmarkAnalyzer.js +301 -0
- package/dist/performance/BenchmarkAnalyzer.js.map +1 -0
- package/dist/performance/MetricsCollector.d.ts +139 -0
- package/dist/performance/MetricsCollector.d.ts.map +1 -0
- package/dist/performance/MetricsCollector.js +320 -0
- package/dist/performance/MetricsCollector.js.map +1 -0
- package/dist/performance/PerformanceAnalytics.d.ts +162 -0
- package/dist/performance/PerformanceAnalytics.d.ts.map +1 -0
- package/dist/performance/PerformanceAnalytics.js +554 -0
- package/dist/performance/PerformanceAnalytics.js.map +1 -0
- package/dist/performance/PerformanceMonitor.d.ts +202 -0
- package/dist/performance/PerformanceMonitor.d.ts.map +1 -0
- package/dist/performance/PerformanceMonitor.js +478 -0
- package/dist/performance/PerformanceMonitor.js.map +1 -0
- package/dist/performance/TrendAnalyzer.d.ts +69 -0
- package/dist/performance/TrendAnalyzer.d.ts.map +1 -0
- package/dist/performance/TrendAnalyzer.js +203 -0
- package/dist/performance/TrendAnalyzer.js.map +1 -0
- package/dist/performance/index.d.ts +11 -0
- package/dist/performance/index.d.ts.map +1 -0
- package/dist/performance/index.js +8 -0
- package/dist/performance/index.js.map +1 -0
- package/dist/security/InputValidator.d.ts +215 -0
- package/dist/security/InputValidator.d.ts.map +1 -0
- package/dist/security/InputValidator.js +278 -0
- package/dist/security/InputValidator.js.map +1 -0
- package/dist/security/SecurityConfig.d.ts +129 -0
- package/dist/security/SecurityConfig.d.ts.map +1 -0
- package/dist/security/SecurityConfig.js +262 -0
- package/dist/security/SecurityConfig.js.map +1 -0
- package/dist/server/ConnectionTester.d.ts +24 -0
- package/dist/server/ConnectionTester.d.ts.map +1 -0
- package/dist/server/ConnectionTester.js +61 -0
- package/dist/server/ConnectionTester.js.map +1 -0
- package/dist/server/ToolRegistry.d.ts +46 -0
- package/dist/server/ToolRegistry.d.ts.map +1 -0
- package/dist/server/ToolRegistry.js +148 -0
- package/dist/server/ToolRegistry.js.map +1 -0
- package/dist/tools/BaseToolClass.d.ts +76 -0
- package/dist/tools/BaseToolClass.d.ts.map +1 -0
- package/dist/tools/BaseToolClass.js +104 -0
- package/dist/tools/BaseToolClass.js.map +1 -0
- package/dist/tools/BaseToolManager.d.ts +26 -0
- package/dist/tools/BaseToolManager.d.ts.map +1 -0
- package/dist/tools/BaseToolManager.js +56 -0
- package/dist/tools/BaseToolManager.js.map +1 -0
- package/dist/tools/base.d.ts +37 -0
- package/dist/tools/base.d.ts.map +1 -0
- package/dist/tools/base.js +60 -0
- package/dist/tools/base.js.map +1 -0
- package/dist/tools/cache.d.ts +260 -0
- package/dist/tools/cache.d.ts.map +1 -0
- package/dist/tools/cache.js +237 -0
- package/dist/tools/cache.js.map +1 -0
- package/dist/tools/index.d.ts +2 -0
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +2 -0
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/performance.d.ts +63 -0
- package/dist/tools/performance.d.ts.map +1 -0
- package/dist/tools/performance.js +865 -0
- package/dist/tools/performance.js.map +1 -0
- package/dist/types/client.d.ts +1 -0
- package/dist/types/client.d.ts.map +1 -1
- package/dist/types/client.js.map +1 -1
- package/dist/utils/toolWrapper.d.ts +4 -0
- package/dist/utils/toolWrapper.d.ts.map +1 -1
- package/dist/utils/toolWrapper.js +11 -0
- package/dist/utils/toolWrapper.js.map +1 -1
- package/dist/utils/validation.d.ts +68 -0
- package/dist/utils/validation.d.ts.map +1 -0
- package/dist/utils/validation.js +185 -0
- package/dist/utils/validation.js.map +1 -0
- package/docs/CACHING.md +340 -0
- package/docs/DOCKER.md +451 -0
- package/docs/PERFORMANCE_MONITORING.md +471 -0
- package/docs/SECURITY_TESTING.md +393 -0
- package/docs/api/README.md +200 -0
- package/docs/api/categories/auth.md +40 -0
- package/docs/api/categories/cache.md +41 -0
- package/docs/api/categories/comment.md +44 -0
- package/docs/api/categories/media.md +43 -0
- package/docs/api/categories/page.md +43 -0
- package/docs/api/categories/performance.md +44 -0
- package/docs/api/categories/post.md +43 -0
- package/docs/api/categories/site.md +43 -0
- package/docs/api/categories/taxonomy.md +47 -0
- package/docs/api/categories/user.md +43 -0
- package/docs/api/openapi.json +3305 -0
- package/docs/api/summary.json +12 -0
- package/docs/api/tools/wp_approve_comment.md +98 -0
- package/docs/api/tools/wp_cache_clear.md +120 -0
- package/docs/api/tools/wp_cache_info.md +119 -0
- package/docs/api/tools/wp_cache_stats.md +119 -0
- package/docs/api/tools/wp_cache_warm.md +119 -0
- package/docs/api/tools/wp_create_application_password.md +102 -0
- package/docs/api/tools/wp_create_category.md +102 -0
- package/docs/api/tools/wp_create_comment.md +128 -0
- package/docs/api/tools/wp_create_page.md +135 -0
- package/docs/api/tools/wp_create_post.md +147 -0
- package/docs/api/tools/wp_create_tag.md +101 -0
- package/docs/api/tools/wp_create_user.md +135 -0
- package/docs/api/tools/wp_delete_application_password.md +101 -0
- package/docs/api/tools/wp_delete_category.md +100 -0
- package/docs/api/tools/wp_delete_comment.md +101 -0
- package/docs/api/tools/wp_delete_media.md +108 -0
- package/docs/api/tools/wp_delete_page.md +108 -0
- package/docs/api/tools/wp_delete_post.md +117 -0
- package/docs/api/tools/wp_delete_tag.md +100 -0
- package/docs/api/tools/wp_delete_user.md +108 -0
- package/docs/api/tools/wp_get_application_passwords.md +103 -0
- package/docs/api/tools/wp_get_auth_status.md +101 -0
- package/docs/api/tools/wp_get_category.md +103 -0
- package/docs/api/tools/wp_get_comment.md +103 -0
- package/docs/api/tools/wp_get_current_user.md +101 -0
- package/docs/api/tools/wp_get_media.md +103 -0
- package/docs/api/tools/wp_get_page.md +103 -0
- package/docs/api/tools/wp_get_page_revisions.md +103 -0
- package/docs/api/tools/wp_get_post.md +112 -0
- package/docs/api/tools/wp_get_post_revisions.md +103 -0
- package/docs/api/tools/wp_get_site_settings.md +108 -0
- package/docs/api/tools/wp_get_tag.md +103 -0
- package/docs/api/tools/wp_get_user.md +103 -0
- package/docs/api/tools/wp_list_categories.md +111 -0
- package/docs/api/tools/wp_list_comments.md +111 -0
- package/docs/api/tools/wp_list_media.md +145 -0
- package/docs/api/tools/wp_list_pages.md +145 -0
- package/docs/api/tools/wp_list_posts.md +156 -0
- package/docs/api/tools/wp_list_tags.md +110 -0
- package/docs/api/tools/wp_list_users.md +111 -0
- package/docs/api/tools/wp_performance_alerts.md +162 -0
- package/docs/api/tools/wp_performance_benchmark.md +160 -0
- package/docs/api/tools/wp_performance_export.md +162 -0
- package/docs/api/tools/wp_performance_history.md +161 -0
- package/docs/api/tools/wp_performance_optimize.md +162 -0
- package/docs/api/tools/wp_performance_stats.md +160 -0
- package/docs/api/tools/wp_search_site.md +99 -0
- package/docs/api/tools/wp_spam_comment.md +98 -0
- package/docs/api/tools/wp_switch_auth_method.md +122 -0
- package/docs/api/tools/wp_test_auth.md +96 -0
- package/docs/api/tools/wp_update_category.md +102 -0
- package/docs/api/tools/wp_update_comment.md +127 -0
- package/docs/api/tools/wp_update_media.md +129 -0
- package/docs/api/tools/wp_update_page.md +135 -0
- package/docs/api/tools/wp_update_post.md +144 -0
- package/docs/api/tools/wp_update_site_settings.md +127 -0
- package/docs/api/tools/wp_update_tag.md +102 -0
- package/docs/api/tools/wp_update_user.md +134 -0
- package/docs/api/tools/wp_upload_media.md +131 -0
- package/docs/api/types/WordPressPost.md +39 -0
- package/docs/contract-testing.md +183 -0
- package/docs/developer/NPM_AUTH_SETUP.md +3 -3
- package/docs/wordpress-rest-api-authentication-troubleshooting.md +218 -0
- package/package.json +84 -64
- package/src/cache/CacheInvalidation.ts +421 -0
- package/src/cache/CacheManager.ts +391 -0
- package/src/cache/HttpCacheWrapper.ts +372 -0
- package/src/cache/__tests__/CacheInvalidation.test.ts +299 -0
- package/src/cache/__tests__/CacheManager.test.ts +300 -0
- package/src/cache/__tests__/CachedWordPressClient.test.ts +304 -0
- package/src/cache/__tests__/HttpCacheWrapper.test.ts +359 -0
- package/src/cache/index.ts +26 -0
- package/src/client/CachedWordPressClient.ts +442 -0
- package/src/config/ConfigurationSchema.ts +246 -0
- package/src/config/ServerConfiguration.ts +215 -0
- package/src/docs/DocumentationGenerator.ts +952 -0
- package/src/docs/MarkdownFormatter.ts +494 -0
- package/src/docs/index.ts +21 -0
- package/src/index.ts +14 -274
- package/src/performance/MetricsCollector.ts +447 -0
- package/src/performance/PerformanceAnalytics.ts +762 -0
- package/src/performance/PerformanceMonitor.ts +649 -0
- package/src/performance/index.ts +28 -0
- package/src/security/InputValidator.ts +319 -0
- package/src/security/SecurityConfig.ts +301 -0
- package/src/server/ConnectionTester.ts +74 -0
- package/src/server/ToolRegistry.ts +194 -0
- package/src/tools/BaseToolManager.ts +66 -0
- package/src/tools/cache.ts +259 -0
- package/src/tools/index.ts +2 -0
- package/src/tools/performance.ts +948 -0
- package/src/types/client.ts +1 -0
- package/src/utils/toolWrapper.ts +11 -0
- package/src/utils/validation.ts +259 -0
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
# wp_list_media
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
Lists media items from a WordPress site, with filters.
|
|
6
|
+
|
|
7
|
+
## Parameters
|
|
8
|
+
|
|
9
|
+
| Parameter | Type | Required | Description | Default | Examples |
|
|
10
|
+
|-----------|------|----------|-------------|---------|----------|
|
|
11
|
+
| `per_page` | `number` | ❌ | Number of items to return per page (max 100). | `10` | `10`, `20` |
|
|
12
|
+
| `search` | `string` | ❌ | Limit results to those matching a search term. | - | `wordpress`, `tutorial` |
|
|
13
|
+
| `media_type` | `string` | ❌ | Limit results to a specific media type. | - | `example` |
|
|
14
|
+
|
|
15
|
+
## Examples
|
|
16
|
+
|
|
17
|
+
### Basic media Usage
|
|
18
|
+
|
|
19
|
+
Simple example of using wp_list_media
|
|
20
|
+
|
|
21
|
+
**Command:**
|
|
22
|
+
```bash
|
|
23
|
+
wp_list_media
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
**Response:**
|
|
27
|
+
```json
|
|
28
|
+
{
|
|
29
|
+
"success": true,
|
|
30
|
+
"data": [
|
|
31
|
+
{
|
|
32
|
+
"id": 1,
|
|
33
|
+
"title": "Example media 1",
|
|
34
|
+
"status": "publish"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"id": 2,
|
|
38
|
+
"title": "Example media 2",
|
|
39
|
+
"status": "draft"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"total": 2,
|
|
43
|
+
"pages": 1
|
|
44
|
+
}
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
**Error Example (Authentication failure):**
|
|
48
|
+
```json
|
|
49
|
+
{
|
|
50
|
+
"error": "Authentication failed",
|
|
51
|
+
"message": "Invalid credentials or insufficient permissions"
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
### Advanced media Configuration
|
|
57
|
+
|
|
58
|
+
Comprehensive example using all available parameters
|
|
59
|
+
|
|
60
|
+
**Command:**
|
|
61
|
+
```bash
|
|
62
|
+
wp_list_media --per_page="10" --search="wordpress" --media_type="example_value"
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
**Response:**
|
|
66
|
+
```json
|
|
67
|
+
{
|
|
68
|
+
"success": true,
|
|
69
|
+
"data": [
|
|
70
|
+
{
|
|
71
|
+
"id": 1,
|
|
72
|
+
"title": "Example media 1",
|
|
73
|
+
"status": "publish"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": 2,
|
|
77
|
+
"title": "Example media 2",
|
|
78
|
+
"status": "draft"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"total": 2,
|
|
82
|
+
"pages": 1
|
|
83
|
+
}
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
## Response Format
|
|
94
|
+
|
|
95
|
+
**Return Type:** `media[]`
|
|
96
|
+
|
|
97
|
+
```json
|
|
98
|
+
{
|
|
99
|
+
"success": true,
|
|
100
|
+
"data": {
|
|
101
|
+
// media[] response data
|
|
102
|
+
},
|
|
103
|
+
"metadata": {
|
|
104
|
+
"timestamp": "2024-01-01T00:00:00.000Z",
|
|
105
|
+
"tool": "wp_list_media",
|
|
106
|
+
"site": "site1"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
## Error Handling
|
|
112
|
+
|
|
113
|
+
### AUTHENTICATION_FAILED
|
|
114
|
+
|
|
115
|
+
**Message:** Authentication failed
|
|
116
|
+
**Description:** Invalid credentials or insufficient permissions
|
|
117
|
+
**Resolution:** Check your authentication credentials and user permissions
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
### VALIDATION_ERROR
|
|
121
|
+
|
|
122
|
+
**Message:** Parameter validation failed
|
|
123
|
+
**Description:** One or more required parameters are missing or invalid
|
|
124
|
+
**Resolution:** Review the required parameters and their formats
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
### NOT_FOUND
|
|
128
|
+
|
|
129
|
+
**Message:** Resource not found
|
|
130
|
+
**Description:** The requested resource does not exist
|
|
131
|
+
**Resolution:** Verify the resource ID and ensure it exists
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
### PERMISSION_DENIED
|
|
135
|
+
|
|
136
|
+
**Message:** Insufficient permissions
|
|
137
|
+
**Description:** The user does not have permission to perform this action
|
|
138
|
+
**Resolution:** Contact an administrator to grant the necessary permissions
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
*Generated automatically from tool definitions - Do not edit manually*
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
# wp_list_pages
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
Lists pages from a WordPress site, with filters.
|
|
6
|
+
|
|
7
|
+
## Parameters
|
|
8
|
+
|
|
9
|
+
| Parameter | Type | Required | Description | Default | Examples |
|
|
10
|
+
|-----------|------|----------|-------------|---------|----------|
|
|
11
|
+
| `per_page` | `number` | ❌ | Number of items to return per page (max 100). | `10` | `10`, `20` |
|
|
12
|
+
| `search` | `string` | ❌ | Limit results to those matching a search term. | - | `wordpress`, `tutorial` |
|
|
13
|
+
| `status` | `string` | ❌ | Filter by page status. | `publish` | `example` |
|
|
14
|
+
|
|
15
|
+
## Examples
|
|
16
|
+
|
|
17
|
+
### Basic page Usage
|
|
18
|
+
|
|
19
|
+
Simple example of using wp_list_pages
|
|
20
|
+
|
|
21
|
+
**Command:**
|
|
22
|
+
```bash
|
|
23
|
+
wp_list_pages
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
**Response:**
|
|
27
|
+
```json
|
|
28
|
+
{
|
|
29
|
+
"success": true,
|
|
30
|
+
"data": [
|
|
31
|
+
{
|
|
32
|
+
"id": 1,
|
|
33
|
+
"title": "Example page 1",
|
|
34
|
+
"status": "publish"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"id": 2,
|
|
38
|
+
"title": "Example page 2",
|
|
39
|
+
"status": "draft"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"total": 2,
|
|
43
|
+
"pages": 1
|
|
44
|
+
}
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
**Error Example (Authentication failure):**
|
|
48
|
+
```json
|
|
49
|
+
{
|
|
50
|
+
"error": "Authentication failed",
|
|
51
|
+
"message": "Invalid credentials or insufficient permissions"
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
### Advanced page Configuration
|
|
57
|
+
|
|
58
|
+
Comprehensive example using all available parameters
|
|
59
|
+
|
|
60
|
+
**Command:**
|
|
61
|
+
```bash
|
|
62
|
+
wp_list_pages --per_page="10" --search="wordpress" --status="publish"
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
**Response:**
|
|
66
|
+
```json
|
|
67
|
+
{
|
|
68
|
+
"success": true,
|
|
69
|
+
"data": [
|
|
70
|
+
{
|
|
71
|
+
"id": 1,
|
|
72
|
+
"title": "Example page 1",
|
|
73
|
+
"status": "publish"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": 2,
|
|
77
|
+
"title": "Example page 2",
|
|
78
|
+
"status": "draft"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"total": 2,
|
|
82
|
+
"pages": 1
|
|
83
|
+
}
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
## Response Format
|
|
94
|
+
|
|
95
|
+
**Return Type:** `page[]`
|
|
96
|
+
|
|
97
|
+
```json
|
|
98
|
+
{
|
|
99
|
+
"success": true,
|
|
100
|
+
"data": {
|
|
101
|
+
// page[] response data
|
|
102
|
+
},
|
|
103
|
+
"metadata": {
|
|
104
|
+
"timestamp": "2024-01-01T00:00:00.000Z",
|
|
105
|
+
"tool": "wp_list_pages",
|
|
106
|
+
"site": "site1"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
## Error Handling
|
|
112
|
+
|
|
113
|
+
### AUTHENTICATION_FAILED
|
|
114
|
+
|
|
115
|
+
**Message:** Authentication failed
|
|
116
|
+
**Description:** Invalid credentials or insufficient permissions
|
|
117
|
+
**Resolution:** Check your authentication credentials and user permissions
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
### VALIDATION_ERROR
|
|
121
|
+
|
|
122
|
+
**Message:** Parameter validation failed
|
|
123
|
+
**Description:** One or more required parameters are missing or invalid
|
|
124
|
+
**Resolution:** Review the required parameters and their formats
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
### NOT_FOUND
|
|
128
|
+
|
|
129
|
+
**Message:** Resource not found
|
|
130
|
+
**Description:** The requested resource does not exist
|
|
131
|
+
**Resolution:** Verify the resource ID and ensure it exists
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
### PERMISSION_DENIED
|
|
135
|
+
|
|
136
|
+
**Message:** Insufficient permissions
|
|
137
|
+
**Description:** The user does not have permission to perform this action
|
|
138
|
+
**Resolution:** Contact an administrator to grant the necessary permissions
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
*Generated automatically from tool definitions - Do not edit manually*
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
# wp_list_posts
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
Lists posts from a WordPress site, with filters.
|
|
6
|
+
|
|
7
|
+
## Parameters
|
|
8
|
+
|
|
9
|
+
| Parameter | Type | Required | Description | Default | Examples |
|
|
10
|
+
|-----------|------|----------|-------------|---------|----------|
|
|
11
|
+
| `per_page` | `number` | ❌ | Number of items to return per page (max 100). | `10` | `10`, `20` |
|
|
12
|
+
| `search` | `string` | ❌ | Limit results to those matching a search term. | - | `wordpress`, `tutorial` |
|
|
13
|
+
| `status` | `string` | ❌ | Filter by post status. | `publish` | `example` |
|
|
14
|
+
| `categories` | `array` | ❌ | Limit results to posts in specific category IDs. | - | `example` |
|
|
15
|
+
| `tags` | `array` | ❌ | Limit results to posts with specific tag IDs. | - | `example` |
|
|
16
|
+
|
|
17
|
+
## Examples
|
|
18
|
+
|
|
19
|
+
### Basic post Usage
|
|
20
|
+
|
|
21
|
+
Simple example of using wp_list_posts
|
|
22
|
+
|
|
23
|
+
**Command:**
|
|
24
|
+
```bash
|
|
25
|
+
wp_list_posts
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
**Response:**
|
|
29
|
+
```json
|
|
30
|
+
{
|
|
31
|
+
"success": true,
|
|
32
|
+
"data": [
|
|
33
|
+
{
|
|
34
|
+
"id": 1,
|
|
35
|
+
"title": "Example post 1",
|
|
36
|
+
"status": "publish"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": 2,
|
|
40
|
+
"title": "Example post 2",
|
|
41
|
+
"status": "draft"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"total": 2,
|
|
45
|
+
"pages": 1
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
**Error Example (Authentication failure):**
|
|
50
|
+
```json
|
|
51
|
+
{
|
|
52
|
+
"error": "Authentication failed",
|
|
53
|
+
"message": "Invalid credentials or insufficient permissions"
|
|
54
|
+
}
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Advanced post Configuration
|
|
59
|
+
|
|
60
|
+
Comprehensive example using all available parameters
|
|
61
|
+
|
|
62
|
+
**Command:**
|
|
63
|
+
```bash
|
|
64
|
+
wp_list_posts --per_page="10" --search="wordpress" --status="publish" --categories="example_value" --tags="example_value"
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
**Response:**
|
|
68
|
+
```json
|
|
69
|
+
{
|
|
70
|
+
"success": true,
|
|
71
|
+
"data": [
|
|
72
|
+
{
|
|
73
|
+
"id": 1,
|
|
74
|
+
"title": "Example post 1",
|
|
75
|
+
"status": "publish"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": 2,
|
|
79
|
+
"title": "Example post 2",
|
|
80
|
+
"status": "draft"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"total": 2,
|
|
84
|
+
"pages": 1
|
|
85
|
+
}
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
## WordPress REST API Mapping
|
|
92
|
+
|
|
93
|
+
**Endpoint:** `/wp-json/wp/v2/posts`
|
|
94
|
+
|
|
95
|
+
This tool directly interfaces with the WordPress REST API endpoint above. The response format and available parameters are determined by WordPress core functionality.
|
|
96
|
+
|
|
97
|
+
### WordPress Documentation
|
|
98
|
+
- [WordPress REST API Handbook](https://developer.wordpress.org/rest-api/)
|
|
99
|
+
- [Endpoint Reference](https://developer.wordpress.org/rest-api/reference/)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
## Response Format
|
|
105
|
+
|
|
106
|
+
**Return Type:** `post[]`
|
|
107
|
+
|
|
108
|
+
```json
|
|
109
|
+
{
|
|
110
|
+
"success": true,
|
|
111
|
+
"data": {
|
|
112
|
+
// post[] response data
|
|
113
|
+
},
|
|
114
|
+
"metadata": {
|
|
115
|
+
"timestamp": "2024-01-01T00:00:00.000Z",
|
|
116
|
+
"tool": "wp_list_posts",
|
|
117
|
+
"site": "site1"
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
## Error Handling
|
|
123
|
+
|
|
124
|
+
### AUTHENTICATION_FAILED
|
|
125
|
+
|
|
126
|
+
**Message:** Authentication failed
|
|
127
|
+
**Description:** Invalid credentials or insufficient permissions
|
|
128
|
+
**Resolution:** Check your authentication credentials and user permissions
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
### VALIDATION_ERROR
|
|
132
|
+
|
|
133
|
+
**Message:** Parameter validation failed
|
|
134
|
+
**Description:** One or more required parameters are missing or invalid
|
|
135
|
+
**Resolution:** Review the required parameters and their formats
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
### NOT_FOUND
|
|
139
|
+
|
|
140
|
+
**Message:** Resource not found
|
|
141
|
+
**Description:** The requested resource does not exist
|
|
142
|
+
**Resolution:** Verify the resource ID and ensure it exists
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
### PERMISSION_DENIED
|
|
146
|
+
|
|
147
|
+
**Message:** Insufficient permissions
|
|
148
|
+
**Description:** The user does not have permission to perform this action
|
|
149
|
+
**Resolution:** Contact an administrator to grant the necessary permissions
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
---
|
|
155
|
+
|
|
156
|
+
*Generated automatically from tool definitions - Do not edit manually*
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
# wp_list_tags
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
Lists tags from a WordPress site.
|
|
6
|
+
|
|
7
|
+
## Parameters
|
|
8
|
+
|
|
9
|
+
| Parameter | Type | Required | Description | Default | Examples |
|
|
10
|
+
|-----------|------|----------|-------------|---------|----------|
|
|
11
|
+
| `search` | `string` | ❌ | Limit results to those matching a search term. | - | `wordpress`, `tutorial` |
|
|
12
|
+
|
|
13
|
+
## Examples
|
|
14
|
+
|
|
15
|
+
### Basic taxonomy Usage
|
|
16
|
+
|
|
17
|
+
Simple example of using wp_list_tags
|
|
18
|
+
|
|
19
|
+
**Command:**
|
|
20
|
+
```bash
|
|
21
|
+
wp_list_tags
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
**Response:**
|
|
25
|
+
```json
|
|
26
|
+
{
|
|
27
|
+
"success": true,
|
|
28
|
+
"data": [
|
|
29
|
+
{
|
|
30
|
+
"id": 1,
|
|
31
|
+
"title": "Example taxonomy 1",
|
|
32
|
+
"status": "publish"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"id": 2,
|
|
36
|
+
"title": "Example taxonomy 2",
|
|
37
|
+
"status": "draft"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"total": 2,
|
|
41
|
+
"pages": 1
|
|
42
|
+
}
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
**Error Example (Authentication failure):**
|
|
46
|
+
```json
|
|
47
|
+
{
|
|
48
|
+
"error": "Authentication failed",
|
|
49
|
+
"message": "Invalid credentials or insufficient permissions"
|
|
50
|
+
}
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
## Response Format
|
|
59
|
+
|
|
60
|
+
**Return Type:** `taxonomy[]`
|
|
61
|
+
|
|
62
|
+
```json
|
|
63
|
+
{
|
|
64
|
+
"success": true,
|
|
65
|
+
"data": {
|
|
66
|
+
// taxonomy[] response data
|
|
67
|
+
},
|
|
68
|
+
"metadata": {
|
|
69
|
+
"timestamp": "2024-01-01T00:00:00.000Z",
|
|
70
|
+
"tool": "wp_list_tags",
|
|
71
|
+
"site": "site1"
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Error Handling
|
|
77
|
+
|
|
78
|
+
### AUTHENTICATION_FAILED
|
|
79
|
+
|
|
80
|
+
**Message:** Authentication failed
|
|
81
|
+
**Description:** Invalid credentials or insufficient permissions
|
|
82
|
+
**Resolution:** Check your authentication credentials and user permissions
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
### VALIDATION_ERROR
|
|
86
|
+
|
|
87
|
+
**Message:** Parameter validation failed
|
|
88
|
+
**Description:** One or more required parameters are missing or invalid
|
|
89
|
+
**Resolution:** Review the required parameters and their formats
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
### NOT_FOUND
|
|
93
|
+
|
|
94
|
+
**Message:** Resource not found
|
|
95
|
+
**Description:** The requested resource does not exist
|
|
96
|
+
**Resolution:** Verify the resource ID and ensure it exists
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### PERMISSION_DENIED
|
|
100
|
+
|
|
101
|
+
**Message:** Insufficient permissions
|
|
102
|
+
**Description:** The user does not have permission to perform this action
|
|
103
|
+
**Resolution:** Contact an administrator to grant the necessary permissions
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
*Generated automatically from tool definitions - Do not edit manually*
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
# wp_list_users
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
Lists users from a WordPress site, with filters.
|
|
6
|
+
|
|
7
|
+
## Parameters
|
|
8
|
+
|
|
9
|
+
| Parameter | Type | Required | Description | Default | Examples |
|
|
10
|
+
|-----------|------|----------|-------------|---------|----------|
|
|
11
|
+
| `search` | `string` | ❌ | Limit results to those matching a search term. | - | `wordpress`, `tutorial` |
|
|
12
|
+
| `roles` | `array` | ❌ | Limit results to users with specific roles. | - | `example` |
|
|
13
|
+
|
|
14
|
+
## Examples
|
|
15
|
+
|
|
16
|
+
### Basic user Usage
|
|
17
|
+
|
|
18
|
+
Simple example of using wp_list_users
|
|
19
|
+
|
|
20
|
+
**Command:**
|
|
21
|
+
```bash
|
|
22
|
+
wp_list_users
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
**Response:**
|
|
26
|
+
```json
|
|
27
|
+
{
|
|
28
|
+
"success": true,
|
|
29
|
+
"data": [
|
|
30
|
+
{
|
|
31
|
+
"id": 1,
|
|
32
|
+
"title": "Example user 1",
|
|
33
|
+
"status": "publish"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": 2,
|
|
37
|
+
"title": "Example user 2",
|
|
38
|
+
"status": "draft"
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"total": 2,
|
|
42
|
+
"pages": 1
|
|
43
|
+
}
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
**Error Example (Authentication failure):**
|
|
47
|
+
```json
|
|
48
|
+
{
|
|
49
|
+
"error": "Authentication failed",
|
|
50
|
+
"message": "Invalid credentials or insufficient permissions"
|
|
51
|
+
}
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
## Response Format
|
|
60
|
+
|
|
61
|
+
**Return Type:** `user[]`
|
|
62
|
+
|
|
63
|
+
```json
|
|
64
|
+
{
|
|
65
|
+
"success": true,
|
|
66
|
+
"data": {
|
|
67
|
+
// user[] response data
|
|
68
|
+
},
|
|
69
|
+
"metadata": {
|
|
70
|
+
"timestamp": "2024-01-01T00:00:00.000Z",
|
|
71
|
+
"tool": "wp_list_users",
|
|
72
|
+
"site": "site1"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## Error Handling
|
|
78
|
+
|
|
79
|
+
### AUTHENTICATION_FAILED
|
|
80
|
+
|
|
81
|
+
**Message:** Authentication failed
|
|
82
|
+
**Description:** Invalid credentials or insufficient permissions
|
|
83
|
+
**Resolution:** Check your authentication credentials and user permissions
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
### VALIDATION_ERROR
|
|
87
|
+
|
|
88
|
+
**Message:** Parameter validation failed
|
|
89
|
+
**Description:** One or more required parameters are missing or invalid
|
|
90
|
+
**Resolution:** Review the required parameters and their formats
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
### NOT_FOUND
|
|
94
|
+
|
|
95
|
+
**Message:** Resource not found
|
|
96
|
+
**Description:** The requested resource does not exist
|
|
97
|
+
**Resolution:** Verify the resource ID and ensure it exists
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
### PERMISSION_DENIED
|
|
101
|
+
|
|
102
|
+
**Message:** Insufficient permissions
|
|
103
|
+
**Description:** The user does not have permission to perform this action
|
|
104
|
+
**Resolution:** Contact an administrator to grant the necessary permissions
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
*Generated automatically from tool definitions - Do not edit manually*
|