-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathregistry.json
More file actions
343 lines (343 loc) · 9.07 KB
/
registry.json
File metadata and controls
343 lines (343 loc) · 9.07 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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
{
"name": "hidrix-tools",
"version": "2.0.0",
"description": "MCP tool server that gives any AI agent the ability to search, scrape, and analyze content across the internet.",
"repository": "https://github.com/sonpiaz/hidrix-tools",
"protocol": "mcp",
"transports": ["stdio", "streamable-http"],
"integrations": [
"claude-code",
"cursor",
"windsurf",
"continue",
"pi",
"openclaw",
"hermes",
"cursor",
"codex"
],
"tools": [
{
"name": "web_search",
"category": "search",
"description": "Search the web using Brave Search. Returns titles, URLs, and descriptions.",
"provider": "Brave Search",
"cost": "free (2000/month)",
"envVars": [
"BRAVE_API_KEY"
],
"chain": {
"suggested_next": [
"web_fetch"
],
"feeds_from": []
}
},
{
"name": "web_fetch",
"category": "scrape",
"description": "Fetch a URL and extract readable content as markdown. Extracts metadata (author, date, tags). Handles X/Twitter URLs specially.",
"provider": "Mozilla Readability + GetXAPI",
"cost": "free",
"envVars": [],
"chain": {
"suggested_next": [
"content_analyzer"
],
"feeds_from": [
"web_search",
"x_search",
"reddit_search"
]
}
},
{
"name": "x_search",
"category": "search",
"description": "Search X/Twitter posts with full engagement data (likes, retweets, replies, views). Supports advanced operators.",
"provider": "GetXAPI / RapidAPI",
"cost": "$0.001/call (GetXAPI) or RapidAPI subscription",
"envVars": [
"GETXAPI_KEY"
],
"chain": {
"suggested_next": [
"x_thread_reader",
"x_user_posts",
"content_scorer"
],
"feeds_from": []
}
},
{
"name": "x_thread_reader",
"category": "scrape",
"description": "Read full X/Twitter threads, articles, and tweet replies. Detects multi-tweet threads and assembles in order.",
"provider": "GetXAPI",
"cost": "$0.003/thread (~3 API calls)",
"envVars": [
"GETXAPI_KEY"
],
"chain": {
"suggested_next": [
"content_analyzer"
],
"feeds_from": [
"x_search"
]
}
},
{
"name": "x_user_posts",
"category": "search",
"description": "Get recent posts from a specific X/Twitter user with full engagement data.",
"provider": "GetXAPI",
"cost": "$0.001/call",
"envVars": [
"GETXAPI_KEY"
],
"chain": {
"suggested_next": [
"content_scorer",
"content_analyzer"
],
"feeds_from": [
"x_search"
]
}
},
{
"name": "reddit_search",
"category": "search",
"description": "Search Reddit posts with full content and engagement data. Filter by subreddit, sort, time range.",
"provider": "RapidAPI",
"cost": "RapidAPI subscription",
"envVars": [
"RAPIDAPI_KEY",
"REDDIT_SEARCH_URL",
"REDDIT_API_HOST"
],
"chain": {
"suggested_next": [
"reddit_thread_reader",
"content_scorer"
],
"feeds_from": []
}
},
{
"name": "reddit_thread_reader",
"category": "scrape",
"description": "Read full Reddit post with comment tree. Uses free Reddit JSON API \u2014 no API key needed.",
"provider": "Reddit JSON API",
"cost": "free",
"envVars": [],
"chain": {
"suggested_next": [
"content_analyzer"
],
"feeds_from": [
"reddit_search",
"reddit_subreddit_top"
]
}
},
{
"name": "reddit_subreddit_top",
"category": "search",
"description": "Get top posts from a specific subreddit by time range. Free Reddit JSON API.",
"provider": "Reddit JSON API",
"cost": "free",
"envVars": [],
"chain": {
"suggested_next": [
"reddit_thread_reader",
"content_scorer"
],
"feeds_from": []
}
},
{
"name": "facebook_scraper",
"category": "scrape",
"description": "Scrape Facebook groups, pages, keyword search, or Meta Ad Library. 4 modes: group, page, search, ads.",
"provider": "Apify + Meta Ad Library API",
"cost": "$1.50-5/1000 posts (Apify) or free (ads mode)",
"envVars": [
"APIFY_API_TOKEN"
],
"chain": {
"suggested_next": [
"content_scorer",
"content_analyzer"
],
"feeds_from": []
}
},
{
"name": "content_scorer",
"category": "analyze",
"description": "Score and rank posts by weighted engagement with time-decay. Input: JSON array of posts.",
"provider": "built-in",
"cost": "free",
"envVars": [],
"chain": {
"suggested_next": [
"content_analyzer"
],
"feeds_from": [
"facebook_scraper",
"x_search",
"x_user_posts",
"reddit_search",
"reddit_subreddit_top"
]
}
},
{
"name": "content_analyzer",
"category": "analyze",
"description": "Analyze posts for topic clusters, content patterns, posting time trends, and author leaderboard.",
"provider": "built-in",
"cost": "free",
"envVars": [],
"chain": {
"suggested_next": [],
"feeds_from": [
"content_scorer",
"facebook_scraper",
"x_search",
"reddit_search"
]
}
},
{
"name": "similarweb_traffic",
"category": "intel",
"description": "Get website traffic analytics \u2014 rank, visits, engagement, traffic sources.",
"provider": "RapidAPI (SimilarWeb)",
"cost": "RapidAPI subscription",
"envVars": [
"SIMILAR_WEB_RAPIDAPI_KEY",
"SIMILAR_WEB_URL",
"SIMILAR_WEB_API_HOST"
],
"chain": {
"suggested_next": [],
"feeds_from": []
}
},
{
"name": "youtube_search",
"category": "search",
"description": "Search YouTube videos. Returns titles, channels, URLs, and descriptions.",
"provider": "RapidAPI",
"cost": "RapidAPI subscription",
"envVars": [
"RAPIDAPI_KEY"
],
"chain": {
"suggested_next": [
"web_fetch"
],
"feeds_from": []
}
},
{
"name": "tiktok_search",
"category": "search",
"description": "Search TikTok videos with play counts, likes, and descriptions.",
"provider": "RapidAPI",
"cost": "RapidAPI subscription",
"envVars": [
"RAPIDAPI_KEY"
],
"chain": {
"suggested_next": [
"content_analyzer"
],
"feeds_from": []
}
},
{
"name": "linkedin_search",
"category": "search",
"description": "Search LinkedIn posts by keyword with engagement data. No login needed.",
"provider": "Apify (datadoping/linkedin-posts-search-scraper)",
"cost": "$1.20/1000 posts",
"envVars": [
"APIFY_API_TOKEN"
],
"chain": {
"suggested_next": [
"content_scorer",
"content_analyzer"
],
"feeds_from": []
}
},
{
"name": "linkedin_profile",
"category": "search",
"description": "Get recent posts from a LinkedIn profile with engagement data. No login needed.",
"provider": "Apify (data-slayer/linkedin-profile-posts-scraper)",
"cost": "$15/1000 posts",
"envVars": [
"APIFY_API_TOKEN"
],
"chain": {
"suggested_next": [
"content_scorer",
"content_analyzer"
],
"feeds_from": [
"linkedin_search"
]
}
}
],
"chains": {
"content_research": {
"description": "Research trending content across platforms, rank by engagement, analyze patterns",
"flow": [
"x_search \u2192 content_scorer \u2192 content_analyzer"
],
"alt_sources": [
"reddit_subreddit_top",
"facebook_scraper",
"youtube_search",
"tiktok_search"
]
},
"competitive_intel": {
"description": "Analyze competitor content strategy and ad spend",
"flow": [
"facebook_scraper(ads) \u2192 content_analyzer"
],
"alt_sources": [
"x_user_posts",
"similarweb_traffic"
]
},
"deep_read": {
"description": "Find content \u2192 read in full \u2192 analyze",
"flow": [
"x_search \u2192 x_thread_reader \u2192 content_analyzer"
],
"alt_sources": [
"reddit_search \u2192 reddit_thread_reader",
"web_search \u2192 web_fetch"
]
},
"linkedin_research": {
"description": "Research LinkedIn thought leaders and trending content",
"flow": [
"linkedin_search \u2192 linkedin_profile \u2192 content_scorer \u2192 content_analyzer"
],
"alt_sources": [
"x_search",
"web_search"
]
}
}
}