-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
110 lines (110 loc) · 3.54 KB
/
Copy pathconfig.json
File metadata and controls
110 lines (110 loc) · 3.54 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
{
"id": "wordpress",
"name": "WordPress",
"description": "AI tools for WordPress sites — search posts, get page content, manage comments, and browse categories.",
"category": "CMS",
"icon": "file-text",
"version": "1.0.0",
"author": "WebMCP",
"tags": [
"wordpress",
"cms",
"blog",
"content"
],
"tools": [
{
"name": "search_posts",
"description": "Search blog posts and pages by keyword. Returns titles, excerpts, authors, dates, and categories.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query"
},
"type": {
"type": "string",
"description": "Content type to search",
"enum": [
"post",
"page",
"any"
],
"default": "any"
},
"category": {
"type": "string",
"description": "Filter by category slug"
},
"limit": {
"type": "number",
"description": "Number of results",
"default": 10
}
},
"required": [
"query"
]
},
"readOnly": true
},
{
"name": "get_post",
"description": "Get the full content of a post or page by ID or slug, including body, author, featured image, and metadata.",
"inputSchema": {
"type": "object",
"properties": {
"idOrSlug": {
"type": "string",
"description": "Post/page ID or URL slug"
}
},
"required": [
"idOrSlug"
]
},
"readOnly": true
},
{
"name": "list_categories",
"description": "List all categories with post counts. Useful for browsing and navigation.",
"inputSchema": {
"type": "object",
"properties": {}
},
"readOnly": true
},
{
"name": "submit_comment",
"description": "Submit a comment on a blog post.",
"inputSchema": {
"type": "object",
"properties": {
"postId": {
"type": "string",
"description": "ID of the post to comment on"
},
"author": {
"type": "string",
"description": "Comment author name"
},
"email": {
"type": "string",
"description": "Comment author email"
},
"content": {
"type": "string",
"description": "Comment text"
}
},
"required": [
"postId",
"author",
"content"
]
},
"readOnly": false
}
]
}