@harbinger-ai/harbinger 0.1.1 → 0.1.3

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.
@@ -0,0 +1,164 @@
1
+ /**
2
+ * Curated registry of popular MCP servers.
3
+ * Used by the MCP Hub UI to browse and install servers.
4
+ */
5
+ export const MCP_REGISTRY = [
6
+ {
7
+ id: 'brave-search',
8
+ name: 'Brave Search',
9
+ description: 'Web search and content extraction via Brave Search API',
10
+ category: 'search',
11
+ url: 'https://mcp.brave.com/sse',
12
+ transport: 'sse',
13
+ requiresKey: true,
14
+ keyEnvVar: 'BRAVE_API_KEY',
15
+ keyUrl: 'https://brave.com/search/api/',
16
+ },
17
+ {
18
+ id: 'tavily',
19
+ name: 'Tavily Search',
20
+ description: 'AI-powered web search optimized for LLMs',
21
+ category: 'search',
22
+ url: 'https://mcp.tavily.com/mcp',
23
+ transport: 'http',
24
+ requiresKey: true,
25
+ keyEnvVar: 'TAVILY_API_KEY',
26
+ keyUrl: 'https://tavily.com/',
27
+ },
28
+ {
29
+ id: 'exa',
30
+ name: 'Exa Search',
31
+ description: 'Neural search engine for finding relevant content',
32
+ category: 'search',
33
+ url: 'https://mcp.exa.ai/mcp',
34
+ transport: 'http',
35
+ requiresKey: true,
36
+ keyEnvVar: 'EXA_API_KEY',
37
+ keyUrl: 'https://exa.ai/',
38
+ },
39
+ {
40
+ id: 'firecrawl',
41
+ name: 'Firecrawl',
42
+ description: 'Web scraping and crawling with structured output',
43
+ category: 'web',
44
+ url: 'https://mcp.firecrawl.dev/sse',
45
+ transport: 'sse',
46
+ requiresKey: true,
47
+ keyEnvVar: 'FIRECRAWL_API_KEY',
48
+ keyUrl: 'https://firecrawl.dev/',
49
+ },
50
+ {
51
+ id: 'browserbase',
52
+ name: 'Browserbase',
53
+ description: 'Cloud browser automation for web scraping and testing',
54
+ category: 'web',
55
+ url: 'https://mcp.browserbase.com/mcp',
56
+ transport: 'http',
57
+ requiresKey: true,
58
+ keyEnvVar: 'BROWSERBASE_API_KEY',
59
+ keyUrl: 'https://browserbase.com/',
60
+ },
61
+ {
62
+ id: 'github',
63
+ name: 'GitHub',
64
+ description: 'Access GitHub repos, issues, PRs, and code search',
65
+ category: 'dev',
66
+ npmPackage: '@modelcontextprotocol/server-github',
67
+ transport: 'stdio',
68
+ requiresKey: true,
69
+ keyEnvVar: 'GITHUB_TOKEN',
70
+ keyUrl: 'https://github.com/settings/tokens',
71
+ },
72
+ {
73
+ id: 'linear',
74
+ name: 'Linear',
75
+ description: 'Project management: issues, projects, and cycles',
76
+ category: 'dev',
77
+ url: 'https://mcp.linear.app/sse',
78
+ transport: 'sse',
79
+ requiresKey: true,
80
+ keyEnvVar: 'LINEAR_API_KEY',
81
+ keyUrl: 'https://linear.app/settings/api',
82
+ },
83
+ {
84
+ id: 'slack',
85
+ name: 'Slack',
86
+ description: 'Read and send Slack messages, manage channels',
87
+ category: 'communication',
88
+ npmPackage: '@modelcontextprotocol/server-slack',
89
+ transport: 'stdio',
90
+ requiresKey: true,
91
+ keyEnvVar: 'SLACK_BOT_TOKEN',
92
+ keyUrl: 'https://api.slack.com/apps',
93
+ },
94
+ {
95
+ id: 'filesystem',
96
+ name: 'Filesystem',
97
+ description: 'Read and write files on the local filesystem',
98
+ category: 'system',
99
+ npmPackage: '@modelcontextprotocol/server-filesystem',
100
+ transport: 'stdio',
101
+ requiresKey: false,
102
+ },
103
+ {
104
+ id: 'memory',
105
+ name: 'Memory',
106
+ description: 'Persistent knowledge graph memory for LLMs',
107
+ category: 'system',
108
+ npmPackage: '@modelcontextprotocol/server-memory',
109
+ transport: 'stdio',
110
+ requiresKey: false,
111
+ },
112
+ {
113
+ id: 'postgres',
114
+ name: 'PostgreSQL',
115
+ description: 'Query and manage PostgreSQL databases',
116
+ category: 'database',
117
+ npmPackage: '@modelcontextprotocol/server-postgres',
118
+ transport: 'stdio',
119
+ requiresKey: true,
120
+ keyEnvVar: 'POSTGRES_URL',
121
+ },
122
+ {
123
+ id: 'sqlite',
124
+ name: 'SQLite',
125
+ description: 'Query and manage SQLite databases',
126
+ category: 'database',
127
+ npmPackage: '@modelcontextprotocol/server-sqlite',
128
+ transport: 'stdio',
129
+ requiresKey: false,
130
+ },
131
+ {
132
+ id: 'sentry',
133
+ name: 'Sentry',
134
+ description: 'Error tracking and performance monitoring',
135
+ category: 'monitoring',
136
+ url: 'https://mcp.sentry.dev/sse',
137
+ transport: 'sse',
138
+ requiresKey: true,
139
+ keyEnvVar: 'SENTRY_AUTH_TOKEN',
140
+ keyUrl: 'https://sentry.io/settings/auth-tokens/',
141
+ },
142
+ {
143
+ id: 'cloudflare',
144
+ name: 'Cloudflare',
145
+ description: 'Manage Cloudflare Workers, KV, R2, and D1',
146
+ category: 'cloud',
147
+ npmPackage: '@cloudflare/mcp-server-cloudflare',
148
+ transport: 'stdio',
149
+ requiresKey: true,
150
+ keyEnvVar: 'CLOUDFLARE_API_TOKEN',
151
+ keyUrl: 'https://dash.cloudflare.com/profile/api-tokens',
152
+ },
153
+ ];
154
+
155
+ export const MCP_CATEGORIES = [
156
+ { id: 'search', name: 'Search', color: 'blue' },
157
+ { id: 'web', name: 'Web', color: 'orange' },
158
+ { id: 'dev', name: 'Developer', color: 'purple' },
159
+ { id: 'communication', name: 'Communication', color: 'green' },
160
+ { id: 'system', name: 'System', color: 'gray' },
161
+ { id: 'database', name: 'Database', color: 'cyan' },
162
+ { id: 'monitoring', name: 'Monitoring', color: 'yellow' },
163
+ { id: 'cloud', name: 'Cloud', color: 'indigo' },
164
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harbinger-ai/harbinger",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "description": "Create autonomous AI agents with a two-layer architecture: Next.js Event Handler + Docker Agent.",
6
6
  "bin": {