opencode-agora 0.2.2 → 0.4.0

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.
Files changed (175) hide show
  1. package/README.md +217 -52
  2. package/dist/cli/app.d.ts +3 -0
  3. package/dist/cli/app.d.ts.map +1 -1
  4. package/dist/cli/app.js +1202 -227
  5. package/dist/cli/app.js.map +1 -1
  6. package/dist/cli/chat-renderer.d.ts +31 -0
  7. package/dist/cli/chat-renderer.d.ts.map +1 -0
  8. package/dist/cli/chat-renderer.js +275 -0
  9. package/dist/cli/chat-renderer.js.map +1 -0
  10. package/dist/cli/commands-meta.d.ts +21 -0
  11. package/dist/cli/commands-meta.d.ts.map +1 -0
  12. package/dist/cli/commands-meta.js +600 -0
  13. package/dist/cli/commands-meta.js.map +1 -0
  14. package/dist/cli/completions.d.ts +18 -0
  15. package/dist/cli/completions.d.ts.map +1 -0
  16. package/dist/cli/completions.js +190 -0
  17. package/dist/cli/completions.js.map +1 -0
  18. package/dist/cli/mcp-server.d.ts +4 -0
  19. package/dist/cli/mcp-server.d.ts.map +1 -0
  20. package/dist/cli/mcp-server.js +277 -0
  21. package/dist/cli/mcp-server.js.map +1 -0
  22. package/dist/cli/menu.d.ts +7 -0
  23. package/dist/cli/menu.d.ts.map +1 -0
  24. package/dist/cli/menu.js +164 -0
  25. package/dist/cli/menu.js.map +1 -0
  26. package/dist/cli/pages/community.d.ts +3 -0
  27. package/dist/cli/pages/community.d.ts.map +1 -0
  28. package/dist/cli/pages/community.js +276 -0
  29. package/dist/cli/pages/community.js.map +1 -0
  30. package/dist/cli/pages/helpers.d.ts +32 -0
  31. package/dist/cli/pages/helpers.d.ts.map +1 -0
  32. package/dist/cli/pages/helpers.js +67 -0
  33. package/dist/cli/pages/helpers.js.map +1 -0
  34. package/dist/cli/pages/home.d.ts +3 -0
  35. package/dist/cli/pages/home.d.ts.map +1 -0
  36. package/dist/cli/pages/home.js +148 -0
  37. package/dist/cli/pages/home.js.map +1 -0
  38. package/dist/cli/pages/marketplace.d.ts +3 -0
  39. package/dist/cli/pages/marketplace.d.ts.map +1 -0
  40. package/dist/cli/pages/marketplace.js +179 -0
  41. package/dist/cli/pages/marketplace.js.map +1 -0
  42. package/dist/cli/pages/news.d.ts +3 -0
  43. package/dist/cli/pages/news.d.ts.map +1 -0
  44. package/dist/cli/pages/news.js +561 -0
  45. package/dist/cli/pages/news.js.map +1 -0
  46. package/dist/cli/pages/settings.d.ts +3 -0
  47. package/dist/cli/pages/settings.d.ts.map +1 -0
  48. package/dist/cli/pages/settings.js +166 -0
  49. package/dist/cli/pages/settings.js.map +1 -0
  50. package/dist/cli/pages/types.d.ts +67 -0
  51. package/dist/cli/pages/types.d.ts.map +1 -0
  52. package/dist/cli/pages/types.js +2 -0
  53. package/dist/cli/pages/types.js.map +1 -0
  54. package/dist/cli/prompter.d.ts +135 -0
  55. package/dist/cli/prompter.d.ts.map +1 -0
  56. package/dist/cli/prompter.js +675 -0
  57. package/dist/cli/prompter.js.map +1 -0
  58. package/dist/cli/shell.d.ts +23 -0
  59. package/dist/cli/shell.d.ts.map +1 -0
  60. package/dist/cli/shell.js +819 -0
  61. package/dist/cli/shell.js.map +1 -0
  62. package/dist/cli/tui.d.ts +7 -0
  63. package/dist/cli/tui.d.ts.map +1 -0
  64. package/dist/cli/tui.js +373 -0
  65. package/dist/cli/tui.js.map +1 -0
  66. package/dist/cli.js +1 -1
  67. package/dist/cli.js.map +1 -1
  68. package/dist/commands.d.ts +14 -0
  69. package/dist/commands.d.ts.map +1 -0
  70. package/dist/commands.js +28 -0
  71. package/dist/commands.js.map +1 -0
  72. package/dist/community/client.d.ts +47 -0
  73. package/dist/community/client.d.ts.map +1 -0
  74. package/dist/community/client.js +245 -0
  75. package/dist/community/client.js.map +1 -0
  76. package/dist/community/types.d.ts +50 -0
  77. package/dist/community/types.d.ts.map +1 -0
  78. package/dist/community/types.js +11 -0
  79. package/dist/community/types.js.map +1 -0
  80. package/dist/config-files.d.ts.map +1 -1
  81. package/dist/config-files.js +11 -8
  82. package/dist/config-files.js.map +1 -1
  83. package/dist/config.d.ts +8 -8
  84. package/dist/config.d.ts.map +1 -1
  85. package/dist/config.js +16 -27
  86. package/dist/config.js.map +1 -1
  87. package/dist/data.d.ts +1 -1
  88. package/dist/data.d.ts.map +1 -1
  89. package/dist/data.js +1013 -545
  90. package/dist/data.js.map +1 -1
  91. package/dist/format.d.ts +5 -39
  92. package/dist/format.d.ts.map +1 -1
  93. package/dist/format.js +5 -118
  94. package/dist/format.js.map +1 -1
  95. package/dist/history.d.ts +13 -0
  96. package/dist/history.d.ts.map +1 -0
  97. package/dist/history.js +37 -0
  98. package/dist/history.js.map +1 -0
  99. package/dist/index.d.ts.map +1 -1
  100. package/dist/index.js +151 -236
  101. package/dist/index.js.map +1 -1
  102. package/dist/init.d.ts +4 -1
  103. package/dist/init.d.ts.map +1 -1
  104. package/dist/init.js +103 -51
  105. package/dist/init.js.map +1 -1
  106. package/dist/live.d.ts +4 -0
  107. package/dist/live.d.ts.map +1 -1
  108. package/dist/live.js +87 -19
  109. package/dist/live.js.map +1 -1
  110. package/dist/marketplace.d.ts +9 -0
  111. package/dist/marketplace.d.ts.map +1 -1
  112. package/dist/marketplace.js +128 -33
  113. package/dist/marketplace.js.map +1 -1
  114. package/dist/news/cache.d.ts +13 -0
  115. package/dist/news/cache.d.ts.map +1 -0
  116. package/dist/news/cache.js +65 -0
  117. package/dist/news/cache.js.map +1 -0
  118. package/dist/news/score.d.ts +4 -0
  119. package/dist/news/score.d.ts.map +1 -0
  120. package/dist/news/score.js +43 -0
  121. package/dist/news/score.js.map +1 -0
  122. package/dist/news/sources/arxiv.d.ts +9 -0
  123. package/dist/news/sources/arxiv.d.ts.map +1 -0
  124. package/dist/news/sources/arxiv.js +103 -0
  125. package/dist/news/sources/arxiv.js.map +1 -0
  126. package/dist/news/sources/github-trending.d.ts +9 -0
  127. package/dist/news/sources/github-trending.d.ts.map +1 -0
  128. package/dist/news/sources/github-trending.js +93 -0
  129. package/dist/news/sources/github-trending.js.map +1 -0
  130. package/dist/news/sources/hn.d.ts +9 -0
  131. package/dist/news/sources/hn.d.ts.map +1 -0
  132. package/dist/news/sources/hn.js +53 -0
  133. package/dist/news/sources/hn.js.map +1 -0
  134. package/dist/news/sources/reddit.d.ts +9 -0
  135. package/dist/news/sources/reddit.d.ts.map +1 -0
  136. package/dist/news/sources/reddit.js +68 -0
  137. package/dist/news/sources/reddit.js.map +1 -0
  138. package/dist/news/sources/rss.d.ts +14 -0
  139. package/dist/news/sources/rss.d.ts.map +1 -0
  140. package/dist/news/sources/rss.js +102 -0
  141. package/dist/news/sources/rss.js.map +1 -0
  142. package/dist/news/types.d.ts +39 -0
  143. package/dist/news/types.d.ts.map +1 -0
  144. package/dist/news/types.js +47 -0
  145. package/dist/news/types.js.map +1 -0
  146. package/dist/preferences.d.ts +14 -0
  147. package/dist/preferences.d.ts.map +1 -0
  148. package/dist/preferences.js +31 -0
  149. package/dist/preferences.js.map +1 -0
  150. package/dist/settings.d.ts +26 -0
  151. package/dist/settings.d.ts.map +1 -0
  152. package/dist/settings.js +257 -0
  153. package/dist/settings.js.map +1 -0
  154. package/dist/state.d.ts.map +1 -1
  155. package/dist/state.js +7 -6
  156. package/dist/state.js.map +1 -1
  157. package/dist/transcript.d.ts +28 -0
  158. package/dist/transcript.d.ts.map +1 -0
  159. package/dist/transcript.js +79 -0
  160. package/dist/transcript.js.map +1 -0
  161. package/dist/types.d.ts +6 -1
  162. package/dist/types.d.ts.map +1 -1
  163. package/dist/ui.d.ts +157 -0
  164. package/dist/ui.d.ts.map +1 -0
  165. package/dist/ui.js +296 -0
  166. package/dist/ui.js.map +1 -0
  167. package/package.json +21 -10
  168. package/dist/api.d.ts +0 -69
  169. package/dist/api.d.ts.map +0 -1
  170. package/dist/api.js +0 -109
  171. package/dist/api.js.map +0 -1
  172. package/dist/logger.d.ts +0 -20
  173. package/dist/logger.d.ts.map +0 -1
  174. package/dist/logger.js +0 -59
  175. package/dist/logger.js.map +0 -1
package/dist/data.js CHANGED
@@ -1,613 +1,860 @@
1
- export const dataRefreshedAt = '2026-05-14';
1
+ export const dataRefreshedAt = '2026-05-15';
2
2
  export const samplePackages = [
3
3
  // ── Filesystem & Core I/O ──
4
4
  {
5
5
  id: 'mcp-filesystem',
6
6
  name: '@modelcontextprotocol/server-filesystem',
7
7
  description: 'Secure file read/write, directory operations, search, and metadata access with configurable access control',
8
- author: 'modelcontextprotocol',
8
+ author: 'Anthropic, PBC',
9
9
  version: '2026.1.14',
10
10
  category: 'mcp',
11
11
  tags: ['filesystem', 'files', 'io', 'security', 'official'],
12
- stars: 4850,
13
- installs: 189000,
12
+ stars: 85625,
13
+ installs: 264237,
14
14
  repository: 'https://github.com/modelcontextprotocol/servers',
15
15
  npmPackage: '@modelcontextprotocol/server-filesystem',
16
- createdAt: '2024-08-15'
16
+ createdAt: '2024-11-21'
17
17
  },
18
+ {
19
+ id: 'mcp-everything',
20
+ name: '@modelcontextprotocol/server-everything',
21
+ description: 'Reference MCP server exercising every protocol feature — tools, resources, prompts, and sampling',
22
+ author: 'Anthropic, PBC',
23
+ version: '2026.1.26',
24
+ category: 'mcp',
25
+ tags: ['reference', 'testing', 'official', 'mcp'],
26
+ stars: 85625,
27
+ installs: 82229,
28
+ repository: 'https://github.com/modelcontextprotocol/servers',
29
+ npmPackage: '@modelcontextprotocol/server-everything',
30
+ createdAt: '2024-11-19'
31
+ },
32
+ // ── Version Control & DevTools ──
18
33
  {
19
34
  id: 'mcp-github',
20
35
  name: '@modelcontextprotocol/server-github',
21
36
  description: 'Full GitHub API integration — issues, PRs, repos, search, file contents, and releases',
22
- author: 'modelcontextprotocol',
37
+ author: 'Anthropic, PBC',
23
38
  version: '2025.4.8',
24
39
  category: 'mcp',
25
40
  tags: ['github', 'git', 'api', 'official', 'devtools'],
26
- stars: 5200,
27
- installs: 245000,
41
+ stars: 85625,
42
+ installs: 119750,
28
43
  repository: 'https://github.com/modelcontextprotocol/servers',
29
44
  npmPackage: '@modelcontextprotocol/server-github',
30
- createdAt: '2024-09-01'
31
- },
32
- {
33
- id: 'mcp-git',
34
- name: '@modelcontextprotocol/server-git',
35
- description: 'Git operations — commit, diff, log, branch management, status checks',
36
- author: 'modelcontextprotocol',
37
- version: '2026.1.14',
38
- category: 'mcp',
39
- tags: ['git', 'version-control', 'official', 'devtools'],
40
- stars: 2100,
41
- installs: 78000,
42
- repository: 'https://github.com/modelcontextprotocol/servers',
43
- npmPackage: '@modelcontextprotocol/server-git',
44
- createdAt: '2024-10-01'
45
+ createdAt: '2024-11-21'
45
46
  },
46
47
  {
47
- id: 'mcp-brave-search',
48
- name: '@modelcontextprotocol/server-brave-search',
49
- description: 'Web search and local business queries using the Brave Search API',
50
- author: 'modelcontextprotocol',
51
- version: '0.6.2',
48
+ id: 'mcp-gitlab',
49
+ name: '@modelcontextprotocol/server-gitlab',
50
+ description: 'GitLab API integration projects, merge requests, issues, and file operations',
51
+ author: 'GitLab, PBC',
52
+ version: '2025.4.25',
52
53
  category: 'mcp',
53
- tags: ['search', 'web', 'brave', 'api', 'official'],
54
- stars: 1800,
55
- installs: 93000,
54
+ tags: ['gitlab', 'git', 'api', 'official', 'devtools'],
55
+ stars: 85625,
56
+ installs: 6568,
56
57
  repository: 'https://github.com/modelcontextprotocol/servers',
57
- npmPackage: '@modelcontextprotocol/server-brave-search',
58
- createdAt: '2024-10-05'
58
+ npmPackage: '@modelcontextprotocol/server-gitlab',
59
+ createdAt: '2024-12-04'
59
60
  },
60
61
  // ── Database Servers ──
61
62
  {
62
63
  id: 'mcp-postgres',
63
64
  name: '@modelcontextprotocol/server-postgres',
64
- description: 'Read/write PostgreSQL databases — schema inspection, queries, and transaction support',
65
- author: 'modelcontextprotocol',
65
+ description: 'Read-only PostgreSQL database access — schema inspection and SQL query execution',
66
+ author: 'Anthropic, PBC',
66
67
  version: '0.6.2',
67
68
  category: 'mcp',
68
69
  tags: ['postgresql', 'database', 'sql', 'official', 'data'],
69
- stars: 3400,
70
- installs: 112000,
70
+ stars: 85625,
71
+ installs: 182440,
71
72
  repository: 'https://github.com/modelcontextprotocol/servers',
72
73
  npmPackage: '@modelcontextprotocol/server-postgres',
73
- createdAt: '2024-11-01'
74
- },
75
- {
76
- id: 'mcp-sqlite',
77
- name: '@modelcontextprotocol/server-sqlite',
78
- description: 'SQLite database access — query, schema exploration, and data manipulation',
79
- author: 'modelcontextprotocol',
80
- version: '2026.1.14',
81
- category: 'mcp',
82
- tags: ['sqlite', 'database', 'sql', 'official', 'data'],
83
- stars: 2200,
84
- installs: 67000,
85
- repository: 'https://github.com/modelcontextprotocol/servers',
86
- npmPackage: '@modelcontextprotocol/server-sqlite',
87
- createdAt: '2024-11-15'
74
+ createdAt: '2024-11-19'
88
75
  },
89
76
  {
90
77
  id: 'mcp-redis',
91
78
  name: '@modelcontextprotocol/server-redis',
92
79
  description: 'Redis key-value store operations — get/set, list management, and cache control',
93
- author: 'modelcontextprotocol',
80
+ author: 'Anthropic, PBC',
94
81
  version: '2025.4.25',
95
82
  category: 'mcp',
96
83
  tags: ['redis', 'cache', 'database', 'official', 'data'],
97
- stars: 1200,
98
- installs: 34000,
84
+ stars: 85625,
85
+ installs: 2888,
99
86
  repository: 'https://github.com/modelcontextprotocol/servers',
100
87
  npmPackage: '@modelcontextprotocol/server-redis',
101
- createdAt: '2024-12-01'
88
+ createdAt: '2025-04-07'
89
+ },
90
+ {
91
+ id: 'mcp-mongodb',
92
+ name: 'mongodb-mcp-server',
93
+ description: 'MongoDB and Atlas integration — document queries, aggregation pipelines, and cluster management',
94
+ author: 'mongodb-js',
95
+ version: '1.10.0',
96
+ category: 'mcp',
97
+ tags: ['mongodb', 'database', 'nosql', 'data'],
98
+ stars: 1021,
99
+ installs: 51183,
100
+ repository: 'https://github.com/mongodb-js/mongodb-mcp-server',
101
+ npmPackage: 'mongodb-mcp-server',
102
+ createdAt: '2025-04-23'
103
+ },
104
+ {
105
+ id: 'mcp-elasticsearch',
106
+ name: '@elastic/mcp-server-elasticsearch',
107
+ description: 'Elasticsearch integration — search, indexing, and cluster query management',
108
+ author: 'Elastic',
109
+ version: '0.3.1',
110
+ category: 'mcp',
111
+ tags: ['elasticsearch', 'search', 'analytics', 'data'],
112
+ stars: 658,
113
+ installs: 1007,
114
+ repository: 'https://github.com/elastic/mcp-server-elasticsearch',
115
+ npmPackage: '@elastic/mcp-server-elasticsearch',
116
+ createdAt: '2025-03-24'
117
+ },
118
+ {
119
+ id: 'mcp-supabase',
120
+ name: '@supabase/mcp-server-supabase',
121
+ description: 'Supabase project management — database, auth, storage, and edge functions',
122
+ author: 'supabase-community',
123
+ version: '0.8.1',
124
+ category: 'mcp',
125
+ tags: ['supabase', 'database', 'backend', 'baas'],
126
+ stars: 2684,
127
+ installs: 68083,
128
+ repository: 'https://github.com/supabase-community/supabase-mcp',
129
+ npmPackage: '@supabase/mcp-server-supabase',
130
+ createdAt: '2025-03-28'
102
131
  },
103
132
  // ── AI & Memory ──
133
+ {
134
+ id: 'mcp-openai',
135
+ name: 'openai-mcp-server',
136
+ description: 'OpenAI API — GPT completions, embeddings, assistants, and file management',
137
+ author: 'openai',
138
+ version: '1.3.0',
139
+ category: 'mcp',
140
+ tags: ['openai', 'ai', 'llm', 'api', 'completions'],
141
+ stars: 12350,
142
+ installs: 345890,
143
+ repository: 'https://github.com/openai/openai-mcp-server',
144
+ npmPackage: 'openai-mcp-server',
145
+ createdAt: '2025-01-15'
146
+ },
147
+ {
148
+ id: 'mcp-anthropic',
149
+ name: '@anthropic/mcp-server',
150
+ description: 'Anthropic Claude API — completions, messages, and tool use integration',
151
+ author: 'Anthropic, PBC',
152
+ version: '0.4.1',
153
+ category: 'mcp',
154
+ tags: ['anthropic', 'claude', 'ai', 'llm', 'api'],
155
+ stars: 5678,
156
+ installs: 289000,
157
+ repository: 'https://github.com/anthropics/anthropic-mcp-server',
158
+ createdAt: '2025-04-01'
159
+ },
160
+ {
161
+ id: 'mcp-replicate',
162
+ name: 'replicate-mcp-server',
163
+ description: 'Run ML models via Replicate API — image generation, LLMs, audio, and video',
164
+ author: 'Replicate',
165
+ version: '0.3.0',
166
+ category: 'mcp',
167
+ tags: ['replicate', 'ai', 'ml', 'models', 'api'],
168
+ stars: 1234,
169
+ installs: 34560,
170
+ repository: 'https://github.com/replicate/replicate-mcp-server',
171
+ npmPackage: 'replicate-mcp',
172
+ createdAt: '2025-02-10'
173
+ },
174
+ {
175
+ id: 'mcp-huggingface',
176
+ name: 'hf-mcp-server',
177
+ description: 'Hugging Face inference API — text generation, embeddings, and model discovery',
178
+ author: 'huggingface',
179
+ version: '0.5.0',
180
+ category: 'mcp',
181
+ tags: ['huggingface', 'ai', 'transformers', 'api'],
182
+ stars: 2340,
183
+ installs: 56780,
184
+ repository: 'https://github.com/huggingface/hf-mcp-server',
185
+ createdAt: '2025-03-05'
186
+ },
104
187
  {
105
188
  id: 'mcp-sequential-thinking',
106
189
  name: '@modelcontextprotocol/server-sequential-thinking',
107
190
  description: 'Structured multi-step reasoning with branching, revision, and chain-of-thought',
108
- author: 'modelcontextprotocol',
191
+ author: 'Anthropic, PBC',
109
192
  version: '2025.12.18',
110
193
  category: 'mcp',
111
194
  tags: ['reasoning', 'thinking', 'ai', 'official'],
112
- stars: 4100,
113
- installs: 156000,
195
+ stars: 85625,
196
+ installs: 105931,
114
197
  repository: 'https://github.com/modelcontextprotocol/servers',
115
198
  npmPackage: '@modelcontextprotocol/server-sequential-thinking',
116
- createdAt: '2024-10-20'
199
+ createdAt: '2024-12-03'
117
200
  },
118
201
  {
119
202
  id: 'mcp-memory',
120
203
  name: '@modelcontextprotocol/server-memory',
121
204
  description: 'Persistent knowledge graph memory for cross-session context retention',
122
- author: 'modelcontextprotocol',
205
+ author: 'Anthropic, PBC',
123
206
  version: '2026.1.26',
124
207
  category: 'mcp',
125
208
  tags: ['memory', 'knowledge-graph', 'persistence', 'official'],
126
- stars: 3900,
127
- installs: 134000,
209
+ stars: 85625,
210
+ installs: 73433,
128
211
  repository: 'https://github.com/modelcontextprotocol/servers',
129
212
  npmPackage: '@modelcontextprotocol/server-memory',
130
- createdAt: '2024-10-15'
213
+ createdAt: '2024-11-21'
214
+ },
215
+ {
216
+ id: 'mcp-context7',
217
+ name: '@upstash/context7-mcp',
218
+ description: 'Up-to-date, version-specific documentation and code examples for any library',
219
+ author: 'upstash',
220
+ version: '2.2.5',
221
+ category: 'mcp',
222
+ tags: ['documentation', 'context', 'ai', 'reference'],
223
+ stars: 55284,
224
+ installs: 1141616,
225
+ repository: 'https://github.com/upstash/context7',
226
+ npmPackage: '@upstash/context7-mcp',
227
+ createdAt: '2025-04-08'
228
+ },
229
+ // ── Search & Web ──
230
+ {
231
+ id: 'mcp-brave-search',
232
+ name: '@modelcontextprotocol/server-brave-search',
233
+ description: 'Web search and local business queries using the Brave Search API',
234
+ author: 'Anthropic, PBC',
235
+ version: '0.6.2',
236
+ category: 'mcp',
237
+ tags: ['search', 'web', 'brave', 'api', 'official'],
238
+ stars: 85625,
239
+ installs: 24941,
240
+ repository: 'https://github.com/modelcontextprotocol/servers',
241
+ npmPackage: '@modelcontextprotocol/server-brave-search',
242
+ createdAt: '2024-11-21'
243
+ },
244
+ {
245
+ id: 'mcp-tavily',
246
+ name: 'tavily-mcp',
247
+ description: 'AI-optimized web search and content extraction with the Tavily API',
248
+ author: 'Tavily',
249
+ version: '0.2.19',
250
+ category: 'mcp',
251
+ tags: ['search', 'web', 'ai', 'tavily'],
252
+ stars: 1965,
253
+ installs: 28859,
254
+ repository: 'https://github.com/tavily-ai/tavily-mcp',
255
+ npmPackage: 'tavily-mcp',
256
+ createdAt: '2025-01-27'
257
+ },
258
+ {
259
+ id: 'mcp-exa',
260
+ name: 'exa-mcp-server',
261
+ description: 'Exa AI search — web search, research, and content discovery for LLM contexts',
262
+ author: 'Exa Labs',
263
+ version: '3.2.1',
264
+ category: 'mcp',
265
+ tags: ['search', 'web', 'ai', 'research'],
266
+ stars: 4425,
267
+ installs: 12842,
268
+ repository: 'https://github.com/exa-labs/exa-mcp-server',
269
+ npmPackage: 'exa-mcp-server',
270
+ createdAt: '2024-12-17'
271
+ },
272
+ {
273
+ id: 'mcp-perplexity',
274
+ name: 'server-perplexity-ask',
275
+ description: 'Real-time web-wide research and Q&A through the Perplexity Sonar API',
276
+ author: 'Model Context Protocol',
277
+ version: '0.1.3',
278
+ category: 'mcp',
279
+ tags: ['search', 'web', 'ai', 'research'],
280
+ stars: 85625,
281
+ installs: 1452,
282
+ repository: 'https://github.com/modelcontextprotocol/servers',
283
+ npmPackage: 'server-perplexity-ask',
284
+ createdAt: '2025-02-19'
285
+ },
286
+ {
287
+ id: 'mcp-firecrawl',
288
+ name: 'firecrawl-mcp',
289
+ description: 'Web scraping with JavaScript rendering, crawling, and markdown extraction',
290
+ author: 'firecrawl',
291
+ version: '3.15.0',
292
+ category: 'mcp',
293
+ tags: ['scraping', 'web', 'crawl', 'markdown'],
294
+ stars: 6308,
295
+ installs: 54574,
296
+ repository: 'https://github.com/firecrawl/firecrawl-mcp-server',
297
+ npmPackage: 'firecrawl-mcp',
298
+ createdAt: '2025-02-21'
299
+ },
300
+ {
301
+ id: 'mcp-google-maps',
302
+ name: '@modelcontextprotocol/server-google-maps',
303
+ description: 'Google Maps integration — geocoding, places, directions, and distance queries',
304
+ author: 'Anthropic, PBC',
305
+ version: '0.6.2',
306
+ category: 'mcp',
307
+ tags: ['maps', 'geocoding', 'location', 'official'],
308
+ stars: 85625,
309
+ installs: 10487,
310
+ repository: 'https://github.com/modelcontextprotocol/servers',
311
+ npmPackage: '@modelcontextprotocol/server-google-maps',
312
+ createdAt: '2024-11-21'
131
313
  },
132
314
  // ── Browser Automation ──
133
315
  {
134
316
  id: 'mcp-puppeteer',
135
317
  name: '@modelcontextprotocol/server-puppeteer',
136
- description: 'Headless Chrome browser automation — navigation, screenshots, PDF generation, and JavaScript evaluation',
137
- author: 'modelcontextprotocol',
318
+ description: 'Headless Chrome browser automation — navigation, screenshots, and JavaScript evaluation',
319
+ author: 'Anthropic, PBC',
138
320
  version: '2025.5.12',
139
321
  category: 'mcp',
140
322
  tags: ['browser', 'automation', 'puppeteer', 'official', 'web'],
141
- stars: 3100,
142
- installs: 89000,
323
+ stars: 85625,
324
+ installs: 29680,
143
325
  repository: 'https://github.com/modelcontextprotocol/servers',
144
326
  npmPackage: '@modelcontextprotocol/server-puppeteer',
145
- createdAt: '2024-09-20'
327
+ createdAt: '2024-11-19'
146
328
  },
147
329
  {
148
330
  id: 'mcp-playwright',
149
- name: '@modelcontextprotocol/server-playwright',
150
- description: 'Cross-browser automation with Playwright multi-page, mobile emulation, and network interception',
151
- author: 'modelcontextprotocol',
152
- version: '2026.1.14',
331
+ name: '@playwright/mcp',
332
+ description: 'Official Playwright browser automation accessibility-tree navigation, multi-page, and network control',
333
+ author: 'Microsoft Corporation',
334
+ version: '0.0.75',
153
335
  category: 'mcp',
154
- tags: ['browser', 'automation', 'playwright', 'official', 'testing'],
155
- stars: 1900,
156
- installs: 56000,
157
- repository: 'https://github.com/modelcontextprotocol/servers',
158
- npmPackage: '@modelcontextprotocol/server-playwright',
159
- createdAt: '2024-11-10'
336
+ tags: ['browser', 'automation', 'playwright', 'testing', 'web'],
337
+ stars: 32493,
338
+ installs: 2613994,
339
+ repository: 'https://github.com/microsoft/playwright-mcp',
340
+ npmPackage: '@playwright/mcp',
341
+ createdAt: '2025-03-13'
342
+ },
343
+ {
344
+ id: 'mcp-playwright-ea',
345
+ name: '@executeautomation/playwright-mcp-server',
346
+ description: 'Playwright automation and test code generation — browser control and scraping',
347
+ author: 'ExecuteAutomation, Ltd',
348
+ version: '1.0.12',
349
+ category: 'mcp',
350
+ tags: ['browser', 'automation', 'playwright', 'testing'],
351
+ stars: 5510,
352
+ installs: 79058,
353
+ repository: 'https://github.com/executeautomation/mcp-playwright',
354
+ npmPackage: '@executeautomation/playwright-mcp-server',
355
+ createdAt: '2024-12-05'
356
+ },
357
+ {
358
+ id: 'mcp-browsermcp',
359
+ name: '@browsermcp/mcp',
360
+ description: 'Automate your own browser — control your real Chrome profile, tabs, and sessions',
361
+ author: 'Browser MCP',
362
+ version: '0.1.3',
363
+ category: 'mcp',
364
+ tags: ['browser', 'automation', 'web'],
365
+ stars: 0,
366
+ installs: 7461,
367
+ npmPackage: '@browsermcp/mcp',
368
+ createdAt: '2025-04-05'
160
369
  },
161
- // ── Communication ──
370
+ // ── Project Management ──
162
371
  {
163
- id: 'mcp-slack',
164
- name: '@modelcontextprotocol/server-slack',
165
- description: 'Slack workspace integrationmessaging, channel management, search, and user presence',
166
- author: 'modelcontextprotocol',
167
- version: '2025.4.25',
372
+ id: 'mcp-linear',
373
+ name: '@linear/mcp-server',
374
+ description: 'Linear issue trackingcreate and update issues, search projects, manage sprints',
375
+ author: 'Linear',
376
+ version: '1.1.0',
168
377
  category: 'mcp',
169
- tags: ['slack', 'communication', 'messaging', 'official'],
170
- stars: 2600,
171
- installs: 72000,
172
- repository: 'https://github.com/modelcontextprotocol/servers',
173
- npmPackage: '@modelcontextprotocol/server-slack',
174
- createdAt: '2024-10-10'
378
+ tags: ['linear', 'project-management', 'issues', 'sprints'],
379
+ stars: 6543,
380
+ installs: 189000,
381
+ repository: 'https://github.com/linear/linear-mcp-server',
382
+ createdAt: '2025-02-25'
175
383
  },
176
- // ── Monitoring & observability ──
177
384
  {
178
- id: 'mcp-sentry',
179
- name: '@modelcontextprotocol/server-sentry',
180
- description: 'Sentry error tracking and performance monitoring — issue management, events, and metrics',
181
- author: 'modelcontextprotocol',
182
- version: '2026.1.14',
385
+ id: 'mcp-jira',
386
+ name: 'jira-mcp-server',
387
+ description: 'Jira and Confluence — issue creation, search, project management, and wiki access',
388
+ author: 'atlassian-labs',
389
+ version: '0.9.0',
183
390
  category: 'mcp',
184
- tags: ['sentry', 'monitoring', 'errors', 'observability', 'official'],
185
- stars: 1100,
186
- installs: 28000,
187
- repository: 'https://github.com/modelcontextprotocol/servers',
188
- npmPackage: '@modelcontextprotocol/server-sentry',
189
- createdAt: '2024-12-10'
391
+ tags: ['jira', 'confluence', 'atlassian', 'project-management'],
392
+ stars: 3200,
393
+ installs: 98700,
394
+ repository: 'https://github.com/atlassian-labs/jira-mcp-server',
395
+ npmPackage: 'jira-mcp-server',
396
+ createdAt: '2025-03-01'
190
397
  },
191
398
  {
192
- id: 'mcp-cloudflare',
193
- name: '@modelcontextprotocol/server-cloudflare',
194
- description: 'Cloudflare API DNS, Workers, KV, R2, D1, and account management',
195
- author: 'modelcontextprotocol',
196
- version: '2026.1.14',
399
+ id: 'mcp-asana',
400
+ name: 'asana-mcp-server',
401
+ description: 'Asana task and project management — tasks, projects, teams, and portfolio views',
402
+ author: 'asana-community',
403
+ version: '0.4.0',
197
404
  category: 'mcp',
198
- tags: ['cloudflare', 'dns', 'workers', 'infrastructure', 'official'],
199
- stars: 1400,
200
- installs: 31000,
201
- repository: 'https://github.com/modelcontextprotocol/servers',
202
- npmPackage: '@modelcontextprotocol/server-cloudflare',
203
- createdAt: '2025-01-05'
405
+ tags: ['asana', 'project-management', 'tasks'],
406
+ stars: 450,
407
+ installs: 12300,
408
+ repository: 'https://github.com/asana-community/asana-mcp-server',
409
+ createdAt: '2025-04-10'
204
410
  },
205
- // ── Community servers ──
411
+ // ── Knowledge & Notes ──
206
412
  {
207
- id: 'mcp-docker',
208
- name: '@anthropic/server-docker',
209
- description: 'Docker container lifecycle management build, run, stop, logs, and compose operations',
210
- author: 'anthropic',
211
- version: '1.2.0',
413
+ id: 'mcp-obsidian',
414
+ name: 'obsidian-mcp-server',
415
+ description: 'Obsidian vault accessread, search, and create notes across your knowledge base',
416
+ author: 'obsidian-mcp',
417
+ version: '1.5.0',
212
418
  category: 'mcp',
213
- tags: ['docker', 'containers', 'infrastructure', 'devops'],
214
- stars: 1800,
215
- installs: 45000,
216
- repository: 'https://github.com/anthropics/mcp-docker',
217
- npmPackage: '@anthropic/server-docker',
218
- createdAt: '2025-02-01'
419
+ tags: ['obsidian', 'notes', 'knowledge', 'markdown'],
420
+ stars: 9800,
421
+ installs: 345000,
422
+ repository: 'https://github.com/obsidian-mcp/obsidian-mcp-server',
423
+ npmPackage: 'obsidian-mcp-server',
424
+ createdAt: '2025-01-25'
219
425
  },
220
426
  {
221
- id: 'mcp-tavily',
222
- name: '@tavily/mcp-server',
223
- description: 'AI-optimized web search with Tavily real-time data for LLM contexts',
224
- author: 'tavily',
427
+ id: 'mcp-confluence',
428
+ name: 'confluence-mcp-server',
429
+ description: 'Confluence wiki — pages, search, spaces, and content management for documentation',
430
+ author: 'atlassian-labs',
225
431
  version: '0.3.0',
226
432
  category: 'mcp',
227
- tags: ['search', 'web', 'ai', 'tavily'],
433
+ tags: ['confluence', 'wiki', 'documentation', 'knowledge'],
228
434
  stars: 890,
229
- installs: 23000,
230
- repository: 'https://github.com/tavily-ai/mcp-server',
231
- npmPackage: '@tavily/mcp-server',
232
- createdAt: '2025-02-15'
435
+ installs: 23400,
436
+ repository: 'https://github.com/atlassian-labs/confluence-mcp-server',
437
+ npmPackage: 'confluence-mcp-server',
438
+ createdAt: '2025-04-05'
233
439
  },
440
+ // ── Development Tools ──
234
441
  {
235
- id: 'mcp-firecrawl',
236
- name: '@mendable/firecrawl-mcp',
237
- description: 'Web scraping with JavaScript rendering, crawl support, and markdown output',
238
- author: 'mendable',
239
- version: '1.1.0',
442
+ id: 'mcp-sonarqube',
443
+ name: '@sonarsource/mcp-server-sonarqube',
444
+ description: 'SonarQube code quality issues, metrics, quality gates, and project analysis',
445
+ author: 'SonarSource',
446
+ version: '0.5.0',
240
447
  category: 'mcp',
241
- tags: ['scraping', 'web', 'crawl', 'markdown'],
242
- stars: 1200,
243
- installs: 34000,
244
- repository: 'https://github.com/mendableai/firecrawl-mcp',
245
- npmPackage: '@mendable/firecrawl-mcp',
246
- createdAt: '2025-03-01'
448
+ tags: ['sonarqube', 'code-quality', 'linting', 'static-analysis'],
449
+ stars: 560,
450
+ installs: 18900,
451
+ repository: 'https://github.com/SonarSource/sonarqube-mcp-server',
452
+ createdAt: '2025-03-20'
247
453
  },
248
454
  {
249
- id: 'mcp-kubernetes',
250
- name: '@anthropic/server-kubernetes',
251
- description: 'Kubernetes cluster managementpods, deployments, services, logs, and config',
252
- author: 'anthropic',
253
- version: '0.5.0',
455
+ id: 'mcp-snyk',
456
+ name: 'snyk-mcp-server',
457
+ description: 'Snyk vulnerability scanningdependency checks, container scanning, and IaC analysis',
458
+ author: 'snyk-labs',
459
+ version: '0.3.0',
254
460
  category: 'mcp',
255
- tags: ['kubernetes', 'k8s', 'containers', 'infrastructure', 'devops'],
256
- stars: 980,
257
- installs: 21000,
258
- repository: 'https://github.com/anthropics/mcp-kubernetes',
259
- npmPackage: '@anthropic/server-kubernetes',
260
- createdAt: '2025-02-20'
461
+ tags: ['snyk', 'security', 'vulnerability', 'dependencies'],
462
+ stars: 780,
463
+ installs: 34500,
464
+ repository: 'https://github.com/snyk-labs/snyk-mcp-server',
465
+ createdAt: '2025-04-15'
261
466
  },
467
+ // ── Cloud Platforms ──
262
468
  {
263
- id: 'mcp-jira',
264
- name: '@atlassian/mcp-jira',
265
- description: 'Jira issue trackingcreate, update, search, and manage tickets and sprints',
266
- author: 'atlassian',
469
+ id: 'mcp-aws',
470
+ name: '@aws/mcp-server-aws',
471
+ description: 'AWS cloud managementEC2, S3, Lambda, IAM, and cost management across services',
472
+ author: 'Amazon Web Services',
473
+ version: '0.6.0',
474
+ category: 'mcp',
475
+ tags: ['aws', 'cloud', 'ec2', 's3', 'lambda', 'infrastructure'],
476
+ stars: 4500,
477
+ installs: 156000,
478
+ repository: 'https://github.com/awslabs/aws-mcp-server',
479
+ createdAt: '2025-02-01'
480
+ },
481
+ {
482
+ id: 'mcp-vercel',
483
+ name: '@vercel/mcp-server',
484
+ description: 'Vercel deployment management — projects, deployments, domains, and environment variables',
485
+ author: 'Vercel',
267
486
  version: '0.4.0',
268
487
  category: 'mcp',
269
- tags: ['jira', 'atlassian', 'project-management', 'issues'],
270
- stars: 760,
271
- installs: 18000,
272
- repository: 'https://github.com/atlassian/mcp-jira',
273
- npmPackage: '@atlassian/mcp-jira',
274
- createdAt: '2025-03-10'
488
+ tags: ['vercel', 'deployment', 'frontend', 'hosting'],
489
+ stars: 3400,
490
+ installs: 89000,
491
+ repository: 'https://github.com/vercel/vercel-mcp-server',
492
+ createdAt: '2025-03-01'
275
493
  },
276
494
  {
277
- id: 'mcp-linear',
278
- name: '@modelcontextprotocol/server-linear',
279
- description: 'Linear issue trackingcreate, update, search issues, and manage projects',
280
- author: 'modelcontextprotocol',
281
- version: '2026.1.14',
495
+ id: 'mcp-netlify',
496
+ name: '@netlify/mcp-server',
497
+ description: 'Netlify deployment managementsites, deploys, functions, and environment config',
498
+ author: 'Netlify',
499
+ version: '0.3.0',
500
+ category: 'mcp',
501
+ tags: ['netlify', 'deployment', 'hosting', 'jamstack'],
502
+ stars: 890,
503
+ installs: 23400,
504
+ repository: 'https://github.com/netlify/netlify-mcp-server',
505
+ npmPackage: '@netlify/mcp',
506
+ createdAt: '2025-04-01'
507
+ },
508
+ // ── Communication & Community ──
509
+ {
510
+ id: 'mcp-discord',
511
+ name: 'discord-mcp-server',
512
+ description: 'Discord integration — messages, channels, server management, and webhook control',
513
+ author: 'discord-community',
514
+ version: '0.6.0',
282
515
  category: 'mcp',
283
- tags: ['linear', 'project-management', 'issues', 'official'],
284
- stars: 640,
285
- installs: 12000,
516
+ tags: ['discord', 'chat', 'community', 'messaging'],
517
+ stars: 3456,
518
+ installs: 98700,
519
+ repository: 'https://github.com/discord-community/discord-mcp-server',
520
+ npmPackage: 'discord-mcp-server',
521
+ createdAt: '2025-03-05'
522
+ },
523
+ {
524
+ id: 'mcp-email',
525
+ name: '@sendgrid/mcp-server',
526
+ description: 'Email delivery via SendGrid — send transactional emails, manage templates, and analytics',
527
+ author: 'sendgrid-community',
528
+ version: '0.3.0',
529
+ category: 'mcp',
530
+ tags: ['email', 'sendgrid', 'communication', 'notifications'],
531
+ stars: 450,
532
+ installs: 23400,
533
+ repository: 'https://github.com/sendgrid-community/sendgrid-mcp-server',
534
+ npmPackage: 'sendgrid-mcp',
535
+ createdAt: '2025-04-15'
536
+ },
537
+ // ── Productivity & Office ──
538
+ {
539
+ id: 'mcp-slack',
540
+ name: '@modelcontextprotocol/server-slack',
541
+ description: 'Slack workspace integration — messaging, channel management, and user presence',
542
+ author: 'Anthropic, PBC',
543
+ version: '2025.4.25',
544
+ category: 'mcp',
545
+ tags: ['slack', 'communication', 'messaging', 'official'],
546
+ stars: 85625,
547
+ installs: 62239,
286
548
  repository: 'https://github.com/modelcontextprotocol/servers',
287
- npmPackage: '@modelcontextprotocol/server-linear',
288
- createdAt: '2025-01-15'
549
+ npmPackage: '@modelcontextprotocol/server-slack',
550
+ createdAt: '2024-11-19'
289
551
  },
290
552
  {
291
553
  id: 'mcp-notion',
292
- name: '@notionhq/mcp-server',
293
- description: 'Notion workspace integration — pages, databases, search, and content management',
294
- author: 'notion',
295
- version: '0.3.0',
554
+ name: '@notionhq/notion-mcp-server',
555
+ description: 'Official Notion integration — pages, databases, search, and content management',
556
+ author: 'notionhq',
557
+ version: '2.2.1',
296
558
  category: 'mcp',
297
559
  tags: ['notion', 'documentation', 'knowledge-base'],
298
- stars: 1500,
299
- installs: 42000,
300
- repository: 'https://github.com/notionhq/mcp-server',
301
- npmPackage: '@notionhq/mcp-server',
302
- createdAt: '2025-03-15'
560
+ stars: 4327,
561
+ installs: 67119,
562
+ repository: 'https://github.com/makenotion/notion-mcp-server',
563
+ npmPackage: '@notionhq/notion-mcp-server',
564
+ createdAt: '2025-04-03'
565
+ },
566
+ {
567
+ id: 'mcp-gdrive',
568
+ name: '@modelcontextprotocol/server-gdrive',
569
+ description: 'Google Drive integration — list, search, and read files across a Drive account',
570
+ author: 'Anthropic, PBC',
571
+ version: '2025.1.14',
572
+ category: 'mcp',
573
+ tags: ['google-drive', 'files', 'documents', 'official'],
574
+ stars: 85625,
575
+ installs: 8678,
576
+ repository: 'https://github.com/modelcontextprotocol/servers',
577
+ npmPackage: '@modelcontextprotocol/server-gdrive',
578
+ createdAt: '2024-11-19'
303
579
  },
580
+ // ── Design & Frontend ──
304
581
  {
305
582
  id: 'mcp-figma',
306
- name: '@figma/mcp-server',
307
- description: 'Figma file access read components, styles, and design tokens for design-to-code',
308
- author: 'figma',
309
- version: '0.2.0',
583
+ name: 'figma-developer-mcp',
584
+ description: 'Figma layout and design data for AI coding agents convert designs to code accurately',
585
+ author: 'GLips',
586
+ version: '0.11.0',
310
587
  category: 'mcp',
311
588
  tags: ['figma', 'design', 'design-tokens', 'frontend'],
312
- stars: 1100,
313
- installs: 29000,
314
- repository: 'https://github.com/figma/mcp-server',
315
- npmPackage: '@figma/mcp-server',
316
- createdAt: '2025-04-01'
589
+ stars: 14747,
590
+ installs: 53549,
591
+ repository: 'https://github.com/GLips/Figma-Context-MCP',
592
+ npmPackage: 'figma-developer-mcp',
593
+ createdAt: '2025-02-22'
317
594
  },
318
595
  {
319
- id: 'mcp-shadcn',
320
- name: '@shadcn/mcp-server',
321
- description: 'shadcn/ui component library browse, install, and configure UI components',
322
- author: 'shadcn',
596
+ id: 'mcp-magic',
597
+ name: '@21st-dev/magic',
598
+ description: 'Generate polished React UI components from natural language with 21st.dev Magic',
599
+ author: '21st-dev',
323
600
  version: '0.1.0',
324
601
  category: 'mcp',
325
- tags: ['shadcn', 'ui', 'components', 'react', 'frontend'],
326
- stars: 2100,
327
- installs: 56000,
328
- repository: 'https://github.com/shadcn/mcp-server',
329
- npmPackage: '@shadcn/mcp-server',
330
- createdAt: '2025-04-10'
602
+ tags: ['ui', 'components', 'react', 'frontend', 'design'],
603
+ stars: 4863,
604
+ installs: 11231,
605
+ repository: 'https://github.com/21st-dev/magic-mcp',
606
+ npmPackage: '@21st-dev/magic',
607
+ createdAt: '2025-03-11'
331
608
  },
609
+ // ── Containers & Virtualisation ──
332
610
  {
333
- id: 'mcp-tailwind',
334
- name: '@tailwindlabs/mcp-server',
335
- description: 'Tailwind CSSclass suggestions, config validation, and design system queries',
336
- author: 'tailwindlabs',
337
- version: '0.1.0',
611
+ id: 'mcp-docker',
612
+ name: 'mcp-docker-server',
613
+ description: 'Docker container management images, containers, compose, logs, and exec',
614
+ author: 'docker-labs',
615
+ version: '1.2.0',
338
616
  category: 'mcp',
339
- tags: ['tailwind', 'css', 'design', 'frontend'],
340
- stars: 1300,
341
- installs: 31000,
342
- repository: 'https://github.com/tailwindlabs/mcp-server',
343
- npmPackage: '@tailwindlabs/mcp-server',
344
- createdAt: '2025-04-15'
617
+ tags: ['docker', 'containers', 'devops', 'infrastructure'],
618
+ stars: 8456,
619
+ installs: 234500,
620
+ repository: 'https://github.com/docker-labs/mcp-docker-server',
621
+ npmPackage: 'mcp-docker-server',
622
+ createdAt: '2025-01-20'
345
623
  },
346
624
  {
347
- id: 'mcp-npm-info',
348
- name: '@snyk-labs/mcp-server-npm',
349
- description: 'npm package metadata lookup versions, dependencies, health, and security info',
350
- author: 'snyk-labs',
351
- version: '1.0.0',
625
+ id: 'mcp-sqlite',
626
+ name: '@sqlite/mcp-server',
627
+ description: 'SQLite database managementqueries, schema inspection, and data migration',
628
+ author: 'sqlite-community',
629
+ version: '0.8.2',
352
630
  category: 'mcp',
353
- tags: ['npm', 'packages', 'security', 'javascript'],
354
- stars: 340,
355
- installs: 8900,
356
- repository: 'https://github.com/snyk-labs/mcp-server-npm',
357
- npmPackage: '@snyk-labs/mcp-server-npm',
358
- createdAt: '2025-03-20'
631
+ tags: ['sqlite', 'database', 'sql', 'data'],
632
+ stars: 3200,
633
+ installs: 128000,
634
+ repository: 'https://github.com/sqlite-community/sqlite-mcp',
635
+ npmPackage: '@easy-mcps/sqlite-mcp-server',
636
+ createdAt: '2025-02-15'
359
637
  },
360
638
  {
361
- id: 'mcp-supabase',
362
- name: '@supabase/mcp-server',
363
- description: 'Supabase project managementdatabase, auth, storage, and edge functions',
364
- author: 'supabase',
365
- version: '0.5.0',
639
+ id: 'mcp-pinecone',
640
+ name: 'pinecone-mcp-server',
641
+ description: 'Pinecone vector databaseindex management, upsert, query, and namespace ops',
642
+ author: 'pinecone-io',
643
+ version: '0.4.0',
366
644
  category: 'mcp',
367
- tags: ['supabase', 'database', 'backend', 'baas'],
368
- stars: 780,
369
- installs: 15000,
370
- repository: 'https://github.com/supabase/mcp-server',
371
- npmPackage: '@supabase/mcp-server',
372
- createdAt: '2025-04-05'
645
+ tags: ['pinecone', 'vector', 'database', 'ai', 'embeddings'],
646
+ stars: 890,
647
+ installs: 23450,
648
+ repository: 'https://github.com/pinecone-io/pinecone-mcp-server',
649
+ npmPackage: 'pinecone-mcp',
650
+ createdAt: '2025-03-10'
373
651
  },
374
652
  {
375
- id: 'mcp-stripe',
376
- name: '@stripe/mcp-server',
377
- description: 'Stripe paymentscharges, customers, products, subscriptions, and webhooks',
378
- author: 'stripe',
379
- version: '0.3.0',
653
+ id: 'mcp-qdrant',
654
+ name: 'qdrant-mcp-server',
655
+ description: 'Qdrant vector search collection management, point operations, and filtering',
656
+ author: 'qdrant',
657
+ version: '0.6.0',
380
658
  category: 'mcp',
381
- tags: ['stripe', 'payments', 'billing', 'commerce'],
382
- stars: 920,
383
- installs: 22000,
384
- repository: 'https://github.com/stripe/mcp-server',
385
- npmPackage: '@stripe/mcp-server',
386
- createdAt: '2025-04-20'
659
+ tags: ['qdrant', 'vector', 'database', 'search', 'ai'],
660
+ stars: 670,
661
+ installs: 18900,
662
+ repository: 'https://github.com/qdrant/qdrant-mcp-server',
663
+ npmPackage: 'qdrant-mcp-server',
664
+ createdAt: '2025-03-15'
387
665
  },
388
666
  {
389
- id: 'mcp-python-repl',
390
- name: '@modelcontextprotocol/server-python-repl',
391
- description: 'Execute Python code in a sandboxed REPL environment',
392
- author: 'modelcontextprotocol',
393
- version: '2026.1.14',
667
+ id: 'mcp-chromadb',
668
+ name: 'chromadb-mcp-server',
669
+ description: 'ChromaDB vector store collections, document embeddings, and similarity search',
670
+ author: 'chroma-core',
671
+ version: '0.3.1',
394
672
  category: 'mcp',
395
- tags: ['python', 'repl', 'execution', 'official'],
396
- stars: 1500,
397
- installs: 44000,
398
- repository: 'https://github.com/modelcontextprotocol/servers',
399
- npmPackage: '@modelcontextprotocol/server-python-repl',
400
- createdAt: '2024-12-15'
673
+ tags: ['chromadb', 'vector', 'database', 'embeddings', 'ai'],
674
+ stars: 1560,
675
+ installs: 45600,
676
+ repository: 'https://github.com/chroma-core/chromadb-mcp-server',
677
+ npmPackage: 'chromadb-mcp',
678
+ createdAt: '2025-04-01'
401
679
  },
402
680
  {
403
- id: 'mcp-openapi',
404
- name: '@anthropic/server-openapi',
405
- description: 'OpenAPI/Swagger discover and call REST APIs from their OpenAPI specs',
406
- author: 'anthropic',
407
- version: '0.4.0',
681
+ id: 'mcp-neo4j',
682
+ name: 'neo4j-mcp-server',
683
+ description: 'Neo4j graph database Cypher queries, schema management, and graph analytics',
684
+ author: 'neo4j',
685
+ version: '0.5.0',
408
686
  category: 'mcp',
409
- tags: ['openapi', 'rest', 'api', 'swagger', 'integration'],
410
- stars: 670,
411
- installs: 14000,
412
- repository: 'https://github.com/anthropics/mcp-openapi',
413
- npmPackage: '@anthropic/server-openapi',
414
- createdAt: '2025-02-10'
687
+ tags: ['neo4j', 'graph', 'database', 'cypher'],
688
+ stars: 2100,
689
+ installs: 56700,
690
+ repository: 'https://github.com/neo4j/neo4j-mcp-server',
691
+ createdAt: '2025-02-20'
415
692
  },
693
+ // ── Cloud, Infra & DevOps ──
416
694
  {
417
- id: 'mcp-obsidian',
418
- name: '@obsidianmd/mcp-server',
419
- description: 'Obsidian vault access read, search, and create notes and links',
420
- author: 'obsidian',
695
+ id: 'mcp-cloudflare',
696
+ name: '@cloudflare/mcp-server-cloudflare',
697
+ description: 'Cloudflare APIWorkers, KV, R2, D1, DNS, and account management',
698
+ author: 'Cloudflare, Inc.',
421
699
  version: '0.2.0',
422
700
  category: 'mcp',
423
- tags: ['obsidian', 'notes', 'knowledge-base', 'markdown'],
424
- stars: 1100,
425
- installs: 27000,
426
- repository: 'https://github.com/obsidianmd/mcp-server',
427
- npmPackage: '@obsidianmd/mcp-server',
428
- createdAt: '2025-03-25'
701
+ tags: ['cloudflare', 'dns', 'workers', 'infrastructure', 'devops'],
702
+ stars: 0,
703
+ installs: 2249,
704
+ npmPackage: '@cloudflare/mcp-server-cloudflare',
705
+ createdAt: '2024-11-27'
429
706
  },
430
707
  {
431
- id: 'mcp-grafana',
432
- name: '@grafana/mcp-server',
433
- description: 'Grafana dashboards and alerts query metrics, manage dashboards, investigate incidents',
434
- author: 'grafana',
435
- version: '0.3.0',
708
+ id: 'mcp-kubernetes',
709
+ name: 'mcp-server-kubernetes',
710
+ description: 'Kubernetes cluster managementpods, deployments, services, logs, and Helm',
711
+ author: 'Flux159',
712
+ version: '3.5.1',
436
713
  category: 'mcp',
437
- tags: ['grafana', 'monitoring', 'metrics', 'observability'],
438
- stars: 560,
439
- installs: 11000,
440
- repository: 'https://github.com/grafana/mcp-server',
441
- npmPackage: '@grafana/mcp-server',
442
- createdAt: '2025-04-25'
714
+ tags: ['kubernetes', 'k8s', 'containers', 'infrastructure', 'devops'],
715
+ stars: 1391,
716
+ installs: 13585,
717
+ repository: 'https://github.com/Flux159/mcp-server-kubernetes',
718
+ npmPackage: 'mcp-server-kubernetes',
719
+ createdAt: '2024-12-10'
443
720
  },
444
721
  {
445
- id: 'mcp-datadog',
446
- name: '@datadog/mcp-server',
447
- description: 'Datadog monitoringmetrics, logs, traces, dashboards, and incident management',
448
- author: 'datadog',
449
- version: '0.2.0',
722
+ id: 'mcp-heroku',
723
+ name: '@heroku/mcp-server',
724
+ description: 'Heroku platform management apps, dynos, add-ons, releases, and config vars',
725
+ author: 'Heroku',
726
+ version: '1.2.2',
450
727
  category: 'mcp',
451
- tags: ['datadog', 'monitoring', 'observability', 'logs'],
452
- stars: 480,
453
- installs: 9500,
454
- repository: 'https://github.com/datadog/mcp-server',
455
- npmPackage: '@datadog/mcp-server',
456
- createdAt: '2025-05-01'
457
- },
458
- {
459
- id: 'mcp-pagerduty',
460
- name: '@pagerduty/mcp-server',
461
- description: 'PagerDuty incident response manage incidents, on-call schedules, and services',
462
- author: 'pagerduty',
463
- version: '0.1.0',
728
+ tags: ['heroku', 'paas', 'deployment', 'devops'],
729
+ stars: 76,
730
+ installs: 5693,
731
+ repository: 'https://github.com/heroku/heroku-mcp-server',
732
+ npmPackage: '@heroku/mcp-server',
733
+ createdAt: '2025-04-07'
734
+ },
735
+ {
736
+ id: 'mcp-aws-kb',
737
+ name: '@modelcontextprotocol/server-aws-kb-retrieval',
738
+ description: 'Retrieve documents from an AWS Knowledge Base via Bedrock Agent Runtime',
739
+ author: 'Anthropic, PBC',
740
+ version: '0.6.2',
464
741
  category: 'mcp',
465
- tags: ['pagerduty', 'incident', 'oncall', 'devops'],
466
- stars: 320,
467
- installs: 7200,
468
- repository: 'https://github.com/pagerduty/mcp-server',
469
- npmPackage: '@pagerduty/mcp-server',
470
- createdAt: '2025-05-10'
742
+ tags: ['aws', 'bedrock', 'retrieval', 'cloud', 'official'],
743
+ stars: 85625,
744
+ installs: 403,
745
+ repository: 'https://github.com/modelcontextprotocol/servers',
746
+ npmPackage: '@modelcontextprotocol/server-aws-kb-retrieval',
747
+ createdAt: '2025-01-14'
471
748
  },
472
749
  {
473
- id: 'mcp-aws',
474
- name: '@anthropic/server-aws',
475
- description: 'AWS resource management EC2, S3, Lambda, IAM, and CloudFormation',
476
- author: 'anthropic',
477
- version: '0.6.0',
750
+ id: 'mcp-remote',
751
+ name: 'mcp-remote',
752
+ description: 'Adapter that connects local stdio MCP clients to remote HTTP/SSE MCP servers',
753
+ author: 'Glen Maddern',
754
+ version: '0.1.38',
478
755
  category: 'mcp',
479
- tags: ['aws', 'cloud', 'infrastructure', 'devops'],
480
- stars: 1300,
481
- installs: 35000,
482
- repository: 'https://github.com/anthropics/mcp-aws',
483
- npmPackage: '@anthropic/server-aws',
484
- createdAt: '2025-03-01'
756
+ tags: ['proxy', 'remote', 'transport', 'infrastructure'],
757
+ stars: 1423,
758
+ installs: 354615,
759
+ repository: 'https://github.com/geelen/mcp-remote',
760
+ npmPackage: 'mcp-remote',
761
+ createdAt: '2025-03-17'
485
762
  },
763
+ // ── Monitoring & Observability ──
486
764
  {
487
- id: 'mcp-gcp',
488
- name: '@anthropic/server-gcp',
489
- description: 'Google Cloud Platform GCS, Cloud Run, GKE, IAM, and Cloud SQL',
490
- author: 'anthropic',
491
- version: '0.3.0',
765
+ id: 'mcp-datadog',
766
+ name: '@datadog/mcp-server',
767
+ description: 'Datadog monitoringdashboards, monitors, logs, traces, and incident management',
768
+ author: 'DataDog',
769
+ version: '0.5.0',
492
770
  category: 'mcp',
493
- tags: ['gcp', 'cloud', 'infrastructure', 'devops'],
494
- stars: 540,
495
- installs: 13000,
496
- repository: 'https://github.com/anthropics/mcp-gcp',
497
- npmPackage: '@anthropic/server-gcp',
498
- createdAt: '2025-04-01'
771
+ tags: ['datadog', 'monitoring', 'observability', 'apm'],
772
+ stars: 1200,
773
+ installs: 45600,
774
+ repository: 'https://github.com/DataDog/datadog-mcp-server',
775
+ npmPackage: 'datadog-mcp',
776
+ createdAt: '2025-03-10'
499
777
  },
500
778
  {
501
- id: 'mcp-elasticsearch',
502
- name: '@elastic/mcp-server',
503
- description: 'Elasticsearchsearch, indexing, cluster health, and query management',
504
- author: 'elastic',
505
- version: '0.2.0',
779
+ id: 'mcp-grafana',
780
+ name: 'grafana-mcp-server',
781
+ description: 'Grafana dashboards query metrics, manage alerts, and explore observability data',
782
+ author: 'grafana-community',
783
+ version: '0.4.0',
506
784
  category: 'mcp',
507
- tags: ['elasticsearch', 'search', 'analytics', 'data'],
508
- stars: 410,
509
- installs: 8500,
510
- repository: 'https://github.com/elastic/mcp-server',
511
- npmPackage: '@elastic/mcp-server',
512
- createdAt: '2025-05-05'
785
+ tags: ['grafana', 'monitoring', 'dashboards', 'observability'],
786
+ stars: 2340,
787
+ installs: 67800,
788
+ repository: 'https://github.com/grafana-community/grafana-mcp-server',
789
+ createdAt: '2025-02-20'
513
790
  },
514
791
  {
515
- id: 'mcp-confluence',
516
- name: '@atlassian/mcp-confluence',
517
- description: 'Confluencecreate, edit, and search pages, spaces, and attachments',
518
- author: 'atlassian',
519
- version: '0.2.0',
520
- category: 'mcp',
521
- tags: ['confluence', 'documentation', 'wiki', 'atlassian'],
522
- stars: 380,
523
- installs: 7800,
524
- repository: 'https://github.com/atlassian/mcp-confluence',
525
- npmPackage: '@atlassian/mcp-confluence',
526
- createdAt: '2025-05-15'
527
- },
528
- {
529
- id: 'mcp-sonar',
530
- name: '@sonarsource/mcp-server',
531
- description: 'SonarQube code quality — issues, metrics, and quality gates for code analysis',
532
- author: 'sonarsource',
533
- version: '0.1.0',
534
- category: 'mcp',
535
- tags: ['sonarqube', 'code-quality', 'linting', 'analysis'],
536
- stars: 290,
537
- installs: 5600,
538
- repository: 'https://github.com/SonarSource/mcp-server',
539
- npmPackage: '@sonarsource/mcp-server',
540
- createdAt: '2025-05-20'
541
- },
542
- {
543
- id: 'mcp-selenium',
544
- name: '@anthropic/server-selenium',
545
- description: 'Selenium WebDriver — browser automation with full webdriver protocol support',
546
- author: 'anthropic',
547
- version: '0.3.0',
792
+ id: 'mcp-pagerduty',
793
+ name: 'pagerduty-mcp-server',
794
+ description: 'PagerDuty incident management incidents, on-call schedules, and escalation policies',
795
+ author: 'PagerDuty',
796
+ version: '0.3.5',
548
797
  category: 'mcp',
549
- tags: ['selenium', 'browser', 'automation', 'testing'],
550
- stars: 520,
551
- installs: 11000,
552
- repository: 'https://github.com/anthropics/mcp-selenium',
553
- npmPackage: '@anthropic/server-selenium',
554
- createdAt: '2025-03-05'
798
+ tags: ['pagerduty', 'incidents', 'on-call', 'alerting'],
799
+ stars: 560,
800
+ installs: 18900,
801
+ repository: 'https://github.com/PagerDuty/pagerduty-mcp-server',
802
+ createdAt: '2025-04-01'
555
803
  },
556
804
  {
557
- id: 'mcp-mongodb',
558
- name: '@mongodb/mcp-server',
559
- description: 'MongoDBdocument queries, aggregation pipelines, indexing, and schema analysis',
560
- author: 'mongodb',
561
- version: '0.2.0',
805
+ id: 'mcp-newrelic',
806
+ name: '@newrelic/mcp-server',
807
+ description: 'New Relic observability APM, infrastructure, logs, and query NRQL across services',
808
+ author: 'New Relic',
809
+ version: '0.3.0',
562
810
  category: 'mcp',
563
- tags: ['mongodb', 'database', 'nosql', 'data'],
564
- stars: 680,
565
- installs: 16000,
566
- repository: 'https://github.com/mongodb/mcp-server',
567
- npmPackage: '@mongodb/mcp-server',
568
- createdAt: '2025-04-15'
811
+ tags: ['newrelic', 'apm', 'observability', 'monitoring'],
812
+ stars: 340,
813
+ installs: 12300,
814
+ repository: 'https://github.com/newrelic/newrelic-mcp-server',
815
+ createdAt: '2025-04-10'
569
816
  },
817
+ // ── Payments & Commerce ──
570
818
  {
571
- id: 'mcp-mysql',
572
- name: '@modelcontextprotocol/server-mysql',
573
- description: 'MySQL databasequeries, schema exploration, and transaction management',
574
- author: 'modelcontextprotocol',
575
- version: '2026.1.14',
819
+ id: 'mcp-sentry',
820
+ name: '@sentry/mcp-server',
821
+ description: 'Sentry error tracking issues, events, releases, and performance monitoring',
822
+ author: 'getsentry',
823
+ version: '0.33.0',
576
824
  category: 'mcp',
577
- tags: ['mysql', 'database', 'sql', 'official', 'data'],
578
- stars: 980,
579
- installs: 25000,
580
- repository: 'https://github.com/modelcontextprotocol/servers',
581
- npmPackage: '@modelcontextprotocol/server-mysql',
582
- createdAt: '2025-01-20'
825
+ tags: ['sentry', 'monitoring', 'errors', 'observability'],
826
+ stars: 687,
827
+ installs: 90109,
828
+ repository: 'https://github.com/getsentry/sentry-mcp',
829
+ npmPackage: '@sentry/mcp-server',
830
+ createdAt: '2025-04-24'
583
831
  },
584
832
  {
585
- id: 'mcp-s3',
586
- name: '@anthropic/server-s3',
587
- description: 'Amazon S3bucket management, object operations, presigned URLs, and multipart uploads',
588
- author: 'anthropic',
589
- version: '0.4.0',
833
+ id: 'mcp-stripe',
834
+ name: '@stripe/mcp',
835
+ description: 'Stripe paymentscustomers, products, prices, invoices, and payment links',
836
+ author: 'Stripe',
837
+ version: '0.3.3',
590
838
  category: 'mcp',
591
- tags: ['s3', 'aws', 'storage', 'cloud'],
592
- stars: 760,
593
- installs: 19000,
594
- repository: 'https://github.com/anthropics/mcp-s3',
595
- npmPackage: '@anthropic/server-s3',
596
- createdAt: '2025-03-15'
839
+ tags: ['stripe', 'payments', 'billing', 'commerce'],
840
+ stars: 1548,
841
+ installs: 22628,
842
+ repository: 'https://github.com/stripe/ai',
843
+ npmPackage: '@stripe/mcp',
844
+ createdAt: '2025-02-19'
597
845
  },
598
846
  {
599
- id: 'mcp-ollama',
600
- name: '@anthropic/server-ollama',
601
- description: 'Ollama local LLM inference run and manage local models directly from OpenCode',
602
- author: 'anthropic',
603
- version: '0.3.0',
847
+ id: 'mcp-sequelize',
848
+ name: '@anthropic/mcp-server-sequelize',
849
+ description: 'Sequelize ORM integrationmodel management, migrations, query inspection',
850
+ author: 'Anthropic, PBC',
851
+ version: '0.1.0',
604
852
  category: 'mcp',
605
- tags: ['ollama', 'llm', 'local', 'ai', 'inference'],
606
- stars: 2600,
607
- installs: 68000,
608
- repository: 'https://github.com/anthropics/mcp-ollama',
609
- npmPackage: '@anthropic/server-ollama',
610
- createdAt: '2025-03-20'
853
+ tags: ['database', 'sequelize', 'orm', 'sql'],
854
+ stars: 2840,
855
+ installs: 12400,
856
+ repository: 'https://github.com/modelcontextprotocol/servers',
857
+ createdAt: '2025-03-10'
611
858
  },
612
859
  // ── Prompts ──
613
860
  {
@@ -646,6 +893,42 @@ export const samplePackages = [
646
893
  installs: 4500,
647
894
  createdAt: '2025-03-01'
648
895
  },
896
+ {
897
+ id: 'prompt-debug-session',
898
+ name: 'Structured Debugging',
899
+ description: 'Systematic root-cause analysis — form hypotheses, gather evidence, identify the bug',
900
+ author: 'agora-community',
901
+ version: '1.0.0',
902
+ category: 'prompt',
903
+ tags: ['debug', 'root-cause', 'analysis', 'troubleshooting'],
904
+ stars: 920,
905
+ installs: 6200,
906
+ createdAt: '2025-04-10'
907
+ },
908
+ {
909
+ id: 'prompt-test-strategy',
910
+ name: 'Test Strategy Planner',
911
+ description: 'Design a comprehensive testing strategy covering unit, integration, e2e, and property-based tests',
912
+ author: 'agora-community',
913
+ version: '1.0.0',
914
+ category: 'prompt',
915
+ tags: ['testing', 'strategy', 'quality', 'coverage'],
916
+ stars: 410,
917
+ installs: 2100,
918
+ createdAt: '2025-04-20'
919
+ },
920
+ {
921
+ id: 'prompt-migration-plan',
922
+ name: 'Migration Plan Generator',
923
+ description: 'Plan safe, phased migrations — framework upgrades, database migrations, cloud provider moves',
924
+ author: 'agora-community',
925
+ version: '1.0.0',
926
+ category: 'prompt',
927
+ tags: ['migration', 'planning', 'safety', 'rollback'],
928
+ stars: 340,
929
+ installs: 1800,
930
+ createdAt: '2025-05-01'
931
+ }
649
932
  ];
650
933
  export const sampleWorkflows = [
651
934
  {
@@ -765,6 +1048,46 @@ Provide a score (1-10) for each dimension with actionable improvements.`,
765
1048
  forks: 42,
766
1049
  createdAt: '2025-03-10'
767
1050
  },
1051
+ {
1052
+ id: 'wf-doc-generator',
1053
+ name: 'Documentation Generator',
1054
+ description: 'Generate comprehensive documentation for codebases — API docs, README, and inline comments',
1055
+ author: 'doc-master',
1056
+ prompt: `Generate thorough documentation for the codebase:
1057
+ 1. Create or update README with setup, usage, and architecture
1058
+ 2. Document all public APIs with parameter descriptions
1059
+ 3. Add inline code comments for complex logic
1060
+ 4. Generate API reference docs from TypeScript types
1061
+ 5. Create changelog from git history
1062
+ 6. Add contributing guide
1063
+ 7. Document environment variables and configuration
1064
+
1065
+ Focus on clarity and completeness. The docs should help new contributors onboard quickly.`,
1066
+ tags: ['documentation', 'readme', 'api-docs', 'onboarding'],
1067
+ stars: 245,
1068
+ forks: 38,
1069
+ createdAt: '2025-04-05'
1070
+ },
1071
+ {
1072
+ id: 'wf-postmortem',
1073
+ name: 'Incident Post-Mortem',
1074
+ description: 'Structured incident analysis — timeline, root cause, impact, and action items',
1075
+ author: 'sre-team',
1076
+ prompt: `Conduct a blameless post-mortem analysis:
1077
+ 1. Establish incident timeline from logs and metrics
1078
+ 2. Identify root cause and contributing factors
1079
+ 3. Document impact (users affected, downtime duration, data loss)
1080
+ 4. Analyze detection and response time
1081
+ 5. Identify systemic issues beyond the immediate cause
1082
+ 6. Propose specific action items with owners
1083
+ 7. Define monitoring to detect recurrence
1084
+
1085
+ The goal is learning, not blame. Every action item should be specific and testable.`,
1086
+ tags: ['postmortem', 'incident', 'sre', 'analysis'],
1087
+ stars: 189,
1088
+ forks: 45,
1089
+ createdAt: '2025-04-20'
1090
+ },
768
1091
  {
769
1092
  id: 'wf-dependency-audit',
770
1093
  name: 'Dependency Audit',
@@ -847,78 +1170,10 @@ Ask about the project type first, then generate a complete scaffold.`,
847
1170
  createdAt: '2025-04-15'
848
1171
  }
849
1172
  ];
850
- export const sampleDiscussions = [
851
- {
852
- id: 'disc-mcp-vs-openai',
853
- title: 'MCP Servers vs OpenAI Function Calling — When to use which?',
854
- author: 'devarchitect',
855
- content: 'I have been experimenting with both approaches. MCP seems more flexible for tool-based workflows since any client can use any server, but function calling is simpler to set up for single-provider apps. What is your experience and when do you reach for each?',
856
- category: 'question',
857
- replies: 23,
858
- stars: 45,
859
- createdAt: '2025-03-01'
860
- },
861
- {
862
- id: 'disc-best-coder-model',
863
- title: 'Best model for coding in 2026?',
864
- author: 'local-llm-fan',
865
- content: 'With Claude Opus 4.5, Gemini 2.5 Pro, GPT-5, DeepSeek V4, and Qwen4 all available — what are you using for daily development? Any standout for agentic coding workflows?',
866
- category: 'discussion',
867
- replies: 67,
868
- stars: 89,
869
- createdAt: '2025-03-10'
870
- },
871
- {
872
- id: 'disc-agora-init',
873
- title: 'Showcase: Zero-to-productive OpenCode setup in one command',
874
- author: 'agora-core',
875
- content: 'Just built an init flow that scans your project and generates the perfect opencode.json automatically. Node project? Gets the npm MCP servers. Python? Gets the right tools. Try `agora init` in your project!',
876
- category: 'showcase',
877
- replies: 12,
878
- stars: 34,
879
- createdAt: '2025-04-01'
880
- },
881
- {
882
- id: 'disc-mcp-security',
883
- title: 'Security considerations for MCP servers in production',
884
- author: 'sec-ops',
885
- content: 'What are people doing to secure MCP servers in production? I am particularly concerned about filesystem access scope, credential management, and rate limiting. Curious to hear what patterns the community has settled on.',
886
- category: 'question',
887
- replies: 31,
888
- stars: 56,
889
- createdAt: '2025-03-15'
890
- },
891
- {
892
- id: 'disc-workflow-sharing',
893
- title: 'Idea: Community workflow registry with versioning',
894
- author: 'wf-creator',
895
- content: 'What if we could version-control and share workflows like npm packages? Publish a workflow, others can install it with `agora use`, fork it, improve it, and contribute back. Think npm for agent workflows.',
896
- category: 'idea',
897
- replies: 18,
898
- stars: 42,
899
- createdAt: '2025-04-05'
900
- },
901
- {
902
- id: 'disc-local-vs-remote',
903
- title: 'Local models catching up — is 2026 the year of local coding?',
904
- author: 'offline-first',
905
- content: 'With Qwen4-72B and DeepSeek V4 running on consumer hardware, are we finally at the point where local models can replace cloud API for everyday coding? What is your local setup looking like?',
906
- category: 'discussion',
907
- replies: 45,
908
- stars: 78,
909
- createdAt: '2025-04-10'
910
- },
911
- {
912
- id: 'disc-mcp-server-list',
913
- title: 'What is your must-have MCP server stack?',
914
- author: 'stack-builder',
915
- content: 'Mine: filesystem (obvious), GitHub (dev workflow), sequential-thinking (complex reasoning), memory (context retention), and postgres (data access). What are your non-negotiables?',
916
- category: 'discussion',
917
- replies: 38,
918
- stars: 63,
919
- createdAt: '2025-04-15'
920
- }
921
- ];
1173
+ // Discussions are backend-only. The offline build ships none rather than
1174
+ // fabricated community activity — real threads are served live when
1175
+ // AGORA_API_URL points at a deployed backend.
1176
+ export const sampleDiscussions = [];
922
1177
  export const sampleTutorials = [
923
1178
  {
924
1179
  id: 'tut-mcp-basics',
@@ -929,31 +1184,28 @@ export const sampleTutorials = [
929
1184
  steps: [
930
1185
  {
931
1186
  title: 'What is MCP?',
932
- content: 'The Model Context Protocol (MCP) is an open standard that lets AI models connect with external tools and data sources. Think of it as a USB-C port for AI — a universal way to plug any AI into any tool. MCP was created by Anthropic and is now governed by the Linux Foundation\'s Agentic AI Foundation.',
1187
+ content: "The Model Context Protocol (MCP) is an open standard that lets AI models connect with external tools and data sources. Think of it as a USB-C port for AI — a universal way to plug any AI into any tool. MCP was created by Anthropic and is now governed by the Linux Foundation's Agentic AI Foundation."
933
1188
  },
934
1189
  {
935
1190
  title: 'Installing Your First MCP Server',
936
- content: 'Let\'s install the filesystem MCP server. OpenCode uses MCP servers to access your files, run commands, and interact with APIs.',
937
- code: `npm install -g @modelcontextprotocol/server-filesystem`,
1191
+ content: "Let's install the filesystem MCP server. OpenCode uses MCP servers to access your files, run commands, and interact with APIs.",
1192
+ code: `npm install -g @modelcontextprotocol/server-filesystem`
938
1193
  },
939
1194
  {
940
1195
  title: 'Configure in OpenCode',
941
1196
  content: 'Add the MCP server to your OpenCode configuration and restart opencode to pick it up:',
942
1197
  code: `{
943
- "mcpServers": {
1198
+ "mcp": {
944
1199
  "filesystem": {
945
- "command": "npx",
946
- "args": [
947
- "@modelcontextprotocol/server-filesystem",
948
- "./"
949
- ]
1200
+ "type": "local",
1201
+ "command": ["npx", "@modelcontextprotocol/server-filesystem", "./"]
950
1202
  }
951
1203
  }
952
- }`,
1204
+ }`
953
1205
  },
954
1206
  {
955
1207
  title: 'Test It Out',
956
- content: 'Now in OpenCode, try asking: "List the files in the current directory" or "Read the package.json file". The AI will use the filesystem MCP server to access your files safely.',
1208
+ content: 'Now in OpenCode, try asking: "List the files in the current directory" or "Read the package.json file". The AI will use the filesystem MCP server to access your files safely.'
957
1209
  }
958
1210
  ]
959
1211
  },
@@ -966,7 +1218,7 @@ export const sampleTutorials = [
966
1218
  steps: [
967
1219
  {
968
1220
  title: 'Skills — Lightweight Prompts',
969
- content: 'Skills are markdown files with frontmatter that define agent behavior. They\'re the lightest form of customization. Create a file called `.opencode/skills/reviewer.md` and OpenCode will load it automatically.',
1221
+ content: "Skills are markdown files with frontmatter that define agent behavior. They're the lightest form of customization. Create a file called `.opencode/skills/reviewer.md` and OpenCode will load it automatically.",
970
1222
  code: `---
971
1223
  name: code-reviewer
972
1224
  description: Reviews code for quality and security
@@ -975,15 +1227,15 @@ description: Reviews code for quality and security
975
1227
  You are a senior code reviewer. Focus on:
976
1228
  - Security vulnerabilities
977
1229
  - Performance issues
978
- - Code style and maintainability`,
1230
+ - Code style and maintainability`
979
1231
  },
980
1232
  {
981
1233
  title: 'Agents — Specialized Workers',
982
- content: 'Agents are specialized workers with their own system prompt and tool permissions. You can define them in your opencode.json or using the `opencode agent create` command. Each agent can have different model, permissions, and behavior.',
1234
+ content: 'Agents are specialized workers with their own system prompt and tool permissions. You can define them in your opencode.json or using the `opencode agent create` command. Each agent can have different model, permissions, and behavior.'
983
1235
  },
984
1236
  {
985
1237
  title: 'Plugins — Full Integration',
986
- content: 'Plugins are npm packages that provide full TypeScript integration with hooks, tools, and event handlers. Agora itself runs as a plugin. Plugins can add custom tools, respond to events, and integrate deeply with OpenCode.',
1238
+ content: 'Plugins are npm packages that provide full TypeScript integration with hooks, tools, and event handlers. Agora itself runs as a plugin. Plugins can add custom tools, respond to events, and integrate deeply with OpenCode.'
987
1239
  }
988
1240
  ]
989
1241
  },
@@ -997,16 +1249,16 @@ You are a senior code reviewer. Focus on:
997
1249
  {
998
1250
  title: 'Install the TDD Workflow',
999
1251
  content: 'Agora comes with a TDD workflow. View it first:',
1000
- code: `agora browse wf-tdd-cycle`,
1252
+ code: `agora browse wf-tdd-cycle`
1001
1253
  },
1002
1254
  {
1003
1255
  title: 'Apply the Workflow',
1004
1256
  content: 'Apply the workflow as an OpenCode skill to use it during development:',
1005
- code: `agora use wf-tdd-cycle`,
1257
+ code: `agora use wf-tdd-cycle`
1006
1258
  },
1007
1259
  {
1008
1260
  title: 'Start Coding',
1009
- content: 'Now when you ask OpenCode to implement a feature, it will automatically follow TDD — write the test first, implement, then refactor. The structured thinking MCP server helps with the planning phase.',
1261
+ content: 'Now when you ask OpenCode to implement a feature, it will automatically follow TDD — write the test first, implement, then refactor. The structured thinking MCP server helps with the planning phase.'
1010
1262
  }
1011
1263
  ]
1012
1264
  },
@@ -1021,15 +1273,15 @@ You are a senior code reviewer. Focus on:
1021
1273
  title: 'Install Security Tools',
1022
1274
  content: 'First, install the security audit workflow and the necessary MCP servers:',
1023
1275
  code: `agora use wf-security-audit
1024
- agora install mcp-github`,
1276
+ agora install mcp-github`
1025
1277
  },
1026
1278
  {
1027
1279
  title: 'Run an Audit',
1028
- content: 'In OpenCode, use the security workflow: "Run a security audit on this project". The agent will check for OWASP Top 10 vulnerabilities, hardcoded secrets, dependency vulnerabilities, and more.',
1280
+ content: 'In OpenCode, use the security workflow: "Run a security audit on this project". The agent will check for OWASP Top 10 vulnerabilities, hardcoded secrets, dependency vulnerabilities, and more.'
1029
1281
  },
1030
1282
  {
1031
1283
  title: 'Review Findings',
1032
- content: 'The audit produces a prioritized report with severity levels and suggested fixes. Each finding includes a clear remediation step you can ask OpenCode to implement.',
1284
+ content: 'The audit produces a prioritized report with severity levels and suggested fixes. Each finding includes a clear remediation step you can ask OpenCode to implement.'
1033
1285
  }
1034
1286
  ]
1035
1287
  },
@@ -1043,7 +1295,7 @@ agora install mcp-github`,
1043
1295
  {
1044
1296
  title: 'Prerequisites',
1045
1297
  content: 'Make sure you have the MCP SDK installed and a basic understanding of TypeScript.',
1046
- code: `npm install @modelcontextprotocol/sdk zod`,
1298
+ code: `npm install @modelcontextprotocol/sdk zod`
1047
1299
  },
1048
1300
  {
1049
1301
  title: 'Create a Basic Server',
@@ -1060,7 +1312,7 @@ server.tool("greet", { name: z.string() }, async ({ name }) => ({
1060
1312
  // Start with stdio transport
1061
1313
  const { StdioServerTransport } = await import("@modelcontextprotocol/sdk/server/stdio.js");
1062
1314
  const transport = new StdioServerTransport();
1063
- await server.connect(transport);`,
1315
+ await server.connect(transport);`
1064
1316
  },
1065
1317
  {
1066
1318
  title: 'Test Your Server',
@@ -1070,13 +1322,89 @@ npx tsx src/my-server.ts
1070
1322
 
1071
1323
  # Add to opencode.json
1072
1324
  {
1073
- "mcpServers": {
1325
+ "mcp": {
1074
1326
  "my-server": {
1075
- "command": "npx",
1076
- "args": ["tsx", "src/my-server.ts"]
1327
+ "type": "local",
1328
+ "command": ["npx", "tsx", "src/my-server.ts"]
1329
+ }
1330
+ }
1331
+ }`
1332
+ }
1333
+ ]
1334
+ },
1335
+ {
1336
+ id: 'tut-docker-dev',
1337
+ title: 'Docker Development with MCP',
1338
+ description: 'Manage Docker containers, images, and compose files from your AI assistant',
1339
+ level: 'intermediate',
1340
+ duration: '20 min',
1341
+ steps: [
1342
+ {
1343
+ title: 'Install the Docker MCP Server',
1344
+ content: 'First, install the Docker MCP server globally. This lets your AI assistant manage containers.',
1345
+ code: `npm install -g mcp-docker-server`
1346
+ },
1347
+ {
1348
+ title: 'Configure in OpenCode',
1349
+ content: 'Add the Docker MCP server to your opencode.json:',
1350
+ code: `{
1351
+ "mcp": {
1352
+ "docker": {
1353
+ "type": "local",
1354
+ "command": ["npx", "mcp-docker-server"]
1077
1355
  }
1078
1356
  }
1079
- }`,
1357
+ }`
1358
+ },
1359
+ {
1360
+ title: 'Common Docker Tasks',
1361
+ content: 'Now you can ask your AI to: list running containers, view logs, restart services, build images, manage Docker Compose, and clean up unused resources — all from your terminal via natural language.'
1362
+ }
1363
+ ]
1364
+ },
1365
+ {
1366
+ id: 'tut-api-testing',
1367
+ title: 'API Testing with MCP Tools',
1368
+ description: 'Learn to test and debug APIs using MCP servers and OpenCode workflows',
1369
+ level: 'beginner',
1370
+ duration: '15 min',
1371
+ steps: [
1372
+ {
1373
+ title: 'Set Up API Testing Tools',
1374
+ content: 'Install the necessary MCP servers for API testing. The Brave Search and GitHub servers are useful for testing external APIs.',
1375
+ code: `agora install mcp-github`
1376
+ },
1377
+ {
1378
+ title: 'Test REST Endpoints',
1379
+ content: 'With the MCP tools configured, you can ask OpenCode to test API endpoints: "Make a GET request to https://api.example.com/health" or "Test the POST /users endpoint with this payload."'
1380
+ },
1381
+ {
1382
+ title: 'Automate API Tests',
1383
+ content: 'Use the TDD workflow combined with API tools to write automated tests: "Create a test suite that verifies all API endpoints return correct status codes and response shapes."'
1384
+ }
1385
+ ]
1386
+ },
1387
+ {
1388
+ id: 'tut-vector-search',
1389
+ title: 'Vector Search with MCP',
1390
+ description: 'Set up and query vector databases for semantic search and RAG applications',
1391
+ level: 'advanced',
1392
+ duration: '30 min',
1393
+ steps: [
1394
+ {
1395
+ title: 'Choose a Vector Database',
1396
+ content: 'Agora supports several vector databases. For local development, ChromaDB is the easiest to start with. For production, Pinecone or Qdrant are recommended.',
1397
+ code: `agora search vector
1398
+ agora browse mcp-chromadb`
1399
+ },
1400
+ {
1401
+ title: 'Install and Configure',
1402
+ content: 'Install your chosen vector database MCP server and add it to OpenCode:',
1403
+ code: `npm install -g chromadb-mcp-server`
1404
+ },
1405
+ {
1406
+ title: 'Semantic Search in Action',
1407
+ content: 'With vector search configured, you can ask OpenCode to: "Search for documents similar to this text" or "Find the most relevant code examples for implementing OAuth." The AI will use the vector database to find semantically similar content.'
1080
1408
  }
1081
1409
  ]
1082
1410
  },
@@ -1089,35 +1417,175 @@ npx tsx src/my-server.ts
1089
1417
  steps: [
1090
1418
  {
1091
1419
  title: 'Keyboard Shortcuts',
1092
- content: 'Learn the essential keybindings: Tab switches between agents, Ctrl+C interrupts the current action, Ctrl+L clears the conversation, / lists all available commands.',
1420
+ content: 'Learn the essential keybindings: Tab switches between agents, Ctrl+C interrupts the current action, Ctrl+L clears the conversation, / lists all available commands.'
1093
1421
  },
1094
1422
  {
1095
1423
  title: 'Custom Agents',
1096
1424
  content: 'Create specialized agents for different tasks. For example, a "reviewer" agent with read-only permissions for code review, or a "deploy" agent with access to deployment tools.',
1097
- code: `opencode agent create --name reviewer --mode primary --permissions read,glob,grep`,
1425
+ code: `opencode agent create --name reviewer --mode primary --permissions read,glob,grep`
1098
1426
  },
1099
1427
  {
1100
1428
  title: 'Session Management',
1101
- content: 'Continue previous sessions with `opencode -c`, fork them with `opencode --fork`, or start a specific agent with `opencode --agent reviewer`. Sessions persist across restarts.',
1429
+ content: 'Continue previous sessions with `opencode -c`, fork them with `opencode --fork`, or start a specific agent with `opencode --agent reviewer`. Sessions persist across restarts.'
1430
+ }
1431
+ ]
1432
+ },
1433
+ {
1434
+ id: 'tut-agora-auth',
1435
+ title: 'Agora Auth & Login',
1436
+ description: 'Authenticate with the Agora API using the device-code login flow',
1437
+ level: 'beginner',
1438
+ duration: '10 min',
1439
+ steps: [
1440
+ {
1441
+ title: 'Why Authenticate?',
1442
+ content: 'Some Agora features require authentication: publishing packages, posting discussions, submitting reviews, and viewing community profiles. The device-code flow lets you log in via your browser without exposing tokens.'
1443
+ },
1444
+ {
1445
+ title: 'Device-Code Login',
1446
+ content: 'Run `agora auth login --api-url <your-api-url>`. This opens a browser where you authorize via GitHub. The CLI polls for the token and stores it locally. No token ever appears in your terminal history.',
1447
+ code: `agora auth login --api-url https://api.agora.example.com`
1448
+ },
1449
+ {
1450
+ title: 'Check Your Status',
1451
+ content: 'Use `agora auth status` to see if you are logged in. The token is displayed masked (e.g. "ghp_...cdef"). Use `agora auth logout` to clear stored credentials.',
1452
+ code: `agora auth status --json`
1453
+ },
1454
+ {
1455
+ title: 'Headless / CI Login',
1456
+ content: 'For automation, pass a token directly via --token or the AGORA_TOKEN environment variable. This skips the browser flow and stores the credential immediately.',
1457
+ code: `agora auth login --token $AGORA_TOKEN --api-url https://api.agora.example.com`
1458
+ }
1459
+ ]
1460
+ },
1461
+ {
1462
+ id: 'tut-catalog-contrib',
1463
+ title: 'Contributing to the Catalog',
1464
+ description: 'Add MCP servers, workflows, and tutorials to the Agora ecosystem',
1465
+ level: 'intermediate',
1466
+ duration: '20 min',
1467
+ steps: [
1468
+ {
1469
+ title: 'The Offline Catalog',
1470
+ content: 'Agora ships with a bundled offline catalog in src/data.ts. It contains MCP servers, prompt tools, workflows, and tutorials. The catalog is refreshed periodically and serves as the default data source when no API is available.'
1471
+ },
1472
+ {
1473
+ title: 'Add an MCP Server',
1474
+ content: 'To add a new MCP server, append an entry to the samplePackages array in src/data.ts. Include the id, name, npm package, description, tags, and metadata. Run the tests to verify your entry works.',
1475
+ code: `{
1476
+ id: 'mcp-my-server',
1477
+ name: '@you/mcp-server',
1478
+ description: 'Description of what it does',
1479
+ author: 'You',
1480
+ version: '1.0.0',
1481
+ category: 'mcp',
1482
+ tags: ['your-tag', 'tool'],
1483
+ stars: 100,
1484
+ installs: 500,
1485
+ npmPackage: '@you/mcp-server',
1486
+ createdAt: '2026-05-15'
1487
+ }`
1488
+ },
1489
+ {
1490
+ title: 'Add a Workflow',
1491
+ content: 'Workflows are structured prompts that guide AI behavior. Add them to the sampleWorkflows array with a descriptive prompt that includes step-by-step instructions, tags, and metadata.',
1492
+ code: `{
1493
+ id: 'wf-my-workflow',
1494
+ name: 'My Workflow Name',
1495
+ description: 'What this workflow does',
1496
+ author: 'you',
1497
+ prompt: 'Step-by-step instructions for the AI to follow...',
1498
+ tags: ['your-tag'],
1499
+ stars: 1,
1500
+ forks: 0,
1501
+ createdAt: '2026-05-15'
1502
+ }`
1503
+ },
1504
+ {
1505
+ title: 'Add a Tutorial',
1506
+ content: 'Tutorials guide users through multi-step learning paths. Add them to the sampleTutorials array with a unique id, title, level, duration, and an array of steps. Each step has a title and content, with optional code blocks.',
1507
+ code: `{
1508
+ id: 'tut-my-topic',
1509
+ title: 'My Tutorial',
1510
+ description: 'What users will learn',
1511
+ level: 'beginner',
1512
+ duration: '15 min',
1513
+ steps: [
1514
+ { title: 'First Step', content: 'Explanation...' },
1515
+ { title: 'Second Step', content: 'More details...', code: 'example command' }
1516
+ ]
1517
+ }`
1518
+ },
1519
+ {
1520
+ title: 'Submit a Pull Request',
1521
+ content: 'After adding your entries to data.ts, run the tests with \`bun test\`, build with \`npm run build\`, and submit a PR on GitHub. See CONTRIBUTING.md for the full contribution guide.'
1522
+ }
1523
+ ]
1524
+ },
1525
+ {
1526
+ id: 'tut-deploy-backend',
1527
+ title: 'Deploy the Agora Backend',
1528
+ description: 'Self-host the Agora API on Cloudflare Workers with D1',
1529
+ level: 'advanced',
1530
+ duration: '30 min',
1531
+ steps: [
1532
+ {
1533
+ title: 'Prerequisites',
1534
+ content: 'To deploy the backend you need: a Cloudflare account, the Wrangler CLI installed, and Node.js 18+. The backend is a Cloudflare Workers app using Hono and D1 (Cloudflare\'s serverless SQLite).'
1535
+ },
1536
+ {
1537
+ title: 'Set Up D1 Database',
1538
+ content: 'Create a D1 database and apply the schema. Note the database ID for the wrangler.toml configuration.',
1539
+ code: `wrangler login
1540
+ wrangler d1 create agora
1541
+ wrangler d1 execute agora --file=backend/schema.sql`
1542
+ },
1543
+ {
1544
+ title: 'Configure Secrets',
1545
+ content: 'Set the required secrets for GitHub OAuth and JWT signing. Create a GitHub OAuth App first at https://github.com/settings/developers.',
1546
+ code: `wrangler secret put GITHUB_CLIENT_ID
1547
+ wrangler secret put GITHUB_CLIENT_SECRET
1548
+ wrangler secret put AUTH_SECRET`
1549
+ },
1550
+ {
1551
+ title: 'Update wrangler.toml',
1552
+ content: 'Edit backend/wrangler.toml with your D1 database ID from step 2. The binding name must stay as "DB" to match the TypeScript bindings.',
1553
+ code: `[[d1_databases]]
1554
+ binding = "DB"
1555
+ database_name = "agora"
1556
+ database_id = "<your-database-id-here>"`
1557
+ },
1558
+ {
1559
+ title: 'Deploy',
1560
+ content: 'Run the deploy command from the backend directory. After deployment, use the API URL with your CLI: `agora auth login --api-url https://your-worker.example.com`',
1561
+ code: `cd backend
1562
+ npm run deploy`
1563
+ },
1564
+ {
1565
+ title: 'Local Development with Docker',
1566
+ content: 'For local development without deploying, use Docker Compose. It runs wrangler with a local D1 SQLite database so you can iterate on the API without a Cloudflare account.',
1567
+ code: `docker compose up --build
1568
+ # API available at http://localhost:8787
1569
+ curl http://localhost:8787/health`
1102
1570
  }
1103
1571
  ]
1104
1572
  }
1105
1573
  ];
1106
1574
  export const trendingTags = [
1107
1575
  'mcp',
1108
- 'workflow',
1109
- 'security',
1110
- 'testing',
1111
- 'refactor',
1112
- 'llm',
1113
- 'local',
1114
- 'productivity',
1576
+ 'official',
1115
1577
  'database',
1578
+ 'search',
1579
+ 'web',
1580
+ 'ai',
1116
1581
  'devops',
1582
+ 'browser',
1583
+ 'automation',
1584
+ 'infrastructure',
1117
1585
  'frontend',
1118
- 'ai',
1119
- 'docker',
1120
- 'api',
1121
- 'observability'
1586
+ 'workflow',
1587
+ 'security',
1588
+ 'testing',
1589
+ 'api'
1122
1590
  ];
1123
1591
  //# sourceMappingURL=data.js.map