@inkeep/agents-manage-api 0.39.5 → 0.40.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.
- package/dist/create-app.d.ts +21 -0
- package/dist/create-app.js +144 -0
- package/dist/data/agentFull.d.ts +15 -0
- package/dist/data/agentFull.js +84 -0
- package/dist/data/conversations.d.ts +77 -0
- package/dist/data/conversations.js +152 -0
- package/dist/data/db/dbClient.d.ts +6 -0
- package/dist/data/db/dbClient.js +17 -0
- package/dist/env.d.ts +61 -0
- package/dist/env.js +55 -0
- package/dist/factory.d.ts +17 -2
- package/dist/factory.js +35 -2
- package/dist/index.d.ts +119 -22
- package/dist/index.js +8 -5
- package/dist/initialization.d.ts +6 -0
- package/dist/initialization.js +79 -0
- package/dist/logger.d.ts +2 -0
- package/dist/logger.js +3 -0
- package/dist/middleware/auth.d.ts +24 -0
- package/dist/middleware/auth.js +55 -0
- package/dist/middleware/error-handler.d.ts +12 -0
- package/dist/middleware/error-handler.js +88 -0
- package/dist/middleware/require-permission.d.ts +19 -0
- package/dist/middleware/require-permission.js +80 -0
- package/dist/middleware/session-auth.d.ts +6 -0
- package/dist/middleware/session-auth.js +26 -0
- package/dist/middleware/tenant-access.d.ts +12 -0
- package/dist/middleware/tenant-access.js +54 -0
- package/dist/openapi.d.ts +7 -0
- package/dist/openapi.js +157 -0
- package/dist/routes/agent.d.ts +9 -0
- package/dist/routes/agent.js +244 -0
- package/dist/routes/agentFull.d.ts +9 -0
- package/dist/routes/agentFull.js +188 -0
- package/dist/routes/agentToolRelations.d.ts +9 -0
- package/dist/routes/agentToolRelations.js +284 -0
- package/dist/routes/apiKeys.d.ts +9 -0
- package/dist/routes/apiKeys.js +217 -0
- package/dist/routes/artifactComponents.d.ts +9 -0
- package/dist/routes/artifactComponents.js +204 -0
- package/dist/routes/cliAuth.d.ts +9 -0
- package/dist/routes/cliAuth.js +60 -0
- package/dist/routes/contextConfigs.d.ts +9 -0
- package/dist/routes/contextConfigs.js +175 -0
- package/dist/routes/conversations.d.ts +7 -0
- package/dist/routes/conversations.js +59 -0
- package/dist/routes/credentialStores.d.ts +9 -0
- package/dist/routes/credentialStores.js +81 -0
- package/dist/routes/credentials.d.ts +9 -0
- package/dist/routes/credentials.js +204 -0
- package/dist/routes/dataComponents.d.ts +9 -0
- package/dist/routes/dataComponents.js +188 -0
- package/dist/routes/externalAgents.d.ts +9 -0
- package/dist/routes/externalAgents.js +195 -0
- package/dist/routes/functionTools.d.ts +9 -0
- package/dist/routes/functionTools.js +252 -0
- package/dist/routes/functions.d.ts +9 -0
- package/dist/routes/functions.js +281 -0
- package/dist/routes/index.d.ts +7 -0
- package/dist/routes/index.js +54 -0
- package/dist/routes/invitations.d.ts +9 -0
- package/dist/routes/invitations.js +41 -0
- package/dist/routes/mcp.d.ts +7 -0
- package/dist/routes/mcp.js +45 -0
- package/dist/routes/mcpCatalog.d.ts +13 -0
- package/dist/routes/mcpCatalog.js +454 -0
- package/dist/routes/oauth.d.ts +10 -0
- package/dist/routes/oauth.js +314 -0
- package/dist/routes/playgroundToken.d.ts +9 -0
- package/dist/routes/playgroundToken.js +108 -0
- package/dist/routes/projectFull.d.ts +9 -0
- package/dist/routes/projectFull.js +193 -0
- package/dist/routes/projects.d.ts +9 -0
- package/dist/routes/projects.js +188 -0
- package/dist/routes/shared.d.ts +93 -0
- package/dist/routes/shared.js +44 -0
- package/dist/routes/signoz.d.ts +10 -0
- package/dist/routes/signoz.js +155 -0
- package/dist/routes/subAgentArtifactComponents.d.ts +9 -0
- package/dist/routes/subAgentArtifactComponents.js +198 -0
- package/dist/routes/subAgentDataComponents.d.ts +9 -0
- package/dist/routes/subAgentDataComponents.js +197 -0
- package/dist/routes/subAgentExternalAgentRelations.d.ts +9 -0
- package/dist/routes/subAgentExternalAgentRelations.js +213 -0
- package/dist/routes/subAgentRelations.d.ts +9 -0
- package/dist/routes/subAgentRelations.js +259 -0
- package/dist/routes/subAgentTeamAgentRelations.d.ts +9 -0
- package/dist/routes/subAgentTeamAgentRelations.js +213 -0
- package/dist/routes/subAgentToolRelations.d.ts +9 -0
- package/dist/routes/subAgentToolRelations.js +284 -0
- package/dist/routes/subAgents.d.ts +9 -0
- package/dist/routes/subAgents.js +210 -0
- package/dist/routes/thirdPartyMCPServers.d.ts +14 -0
- package/dist/routes/thirdPartyMCPServers.js +72 -0
- package/dist/routes/tools.d.ts +9 -0
- package/dist/routes/tools.js +256 -0
- package/dist/routes/userOrganizations.d.ts +9 -0
- package/dist/routes/userOrganizations.js +58 -0
- package/dist/sso-helpers.d.ts +20 -0
- package/dist/sso-helpers.js +51 -0
- package/dist/types/app.d.ts +47 -0
- package/dist/types/app.js +1 -0
- package/dist/utils/cors.d.ts +33 -0
- package/dist/utils/cors.js +98 -0
- package/dist/utils/oauth-service.d.ts +71 -0
- package/dist/utils/oauth-service.js +106 -0
- package/dist/utils/signoz-helpers.d.ts +9 -0
- package/dist/utils/signoz-helpers.js +33 -0
- package/dist/utils/temp-api-keys.d.ts +17 -0
- package/dist/utils/temp-api-keys.js +26 -0
- package/package.json +6 -13
- package/dist/chunk-VBDAOXYI.js +0 -832
- package/dist/chunk-VBDAOXYI.js.map +0 -1
- package/dist/factory2.d.ts +0 -41
- package/dist/factory2.d.ts.map +0 -1
- package/dist/factory2.js +0 -37085
- package/dist/factory2.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/nodefs.js +0 -27
- package/dist/nodefs.js.map +0 -1
- package/dist/opfs-ahp.js +0 -368
- package/dist/opfs-ahp.js.map +0 -1
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { env } from "../env.js";
|
|
2
|
+
import { Hono } from "hono";
|
|
3
|
+
import { StreamableHTTPTransport } from "@hono/mcp";
|
|
4
|
+
import { HeaderForwardingHook, InkeepAgentsCore, SDKHooks, createConsoleLogger, createMCPServer } from "@inkeep/agents-manage-mcp";
|
|
5
|
+
|
|
6
|
+
//#region src/routes/mcp.ts
|
|
7
|
+
const app = new Hono();
|
|
8
|
+
/**
|
|
9
|
+
* Headers to forward from incoming requests to downstream API calls.
|
|
10
|
+
* x-forwarded-cookie is mapped to cookie for browser compatibility
|
|
11
|
+
* (browsers don't allow setting Cookie header directly).
|
|
12
|
+
*/
|
|
13
|
+
const FORWARDED_HEADERS = [
|
|
14
|
+
"x-forwarded-cookie",
|
|
15
|
+
"authorization",
|
|
16
|
+
"cookie"
|
|
17
|
+
];
|
|
18
|
+
app.all("/", async (c) => {
|
|
19
|
+
const transport = new StreamableHTTPTransport();
|
|
20
|
+
const noOpLogger = createConsoleLogger("error");
|
|
21
|
+
const headersToForward = {};
|
|
22
|
+
for (const headerName of FORWARDED_HEADERS) {
|
|
23
|
+
const value = c.req.header(headerName);
|
|
24
|
+
if (value) headersToForward[headerName] = value;
|
|
25
|
+
}
|
|
26
|
+
if (headersToForward["x-forwarded-cookie"] && !headersToForward["cookie"]) headersToForward["cookie"] = headersToForward["x-forwarded-cookie"];
|
|
27
|
+
const createSDKWithHeaders = () => {
|
|
28
|
+
const hooks = new SDKHooks();
|
|
29
|
+
hooks.registerBeforeRequestHook(new HeaderForwardingHook(headersToForward));
|
|
30
|
+
return new InkeepAgentsCore({
|
|
31
|
+
serverURL: env.INKEEP_AGENTS_MANAGE_API_URL,
|
|
32
|
+
hooks
|
|
33
|
+
});
|
|
34
|
+
};
|
|
35
|
+
await createMCPServer({
|
|
36
|
+
logger: noOpLogger,
|
|
37
|
+
serverURL: env.INKEEP_AGENTS_MANAGE_API_URL,
|
|
38
|
+
getSDK: createSDKWithHeaders
|
|
39
|
+
}).connect(transport);
|
|
40
|
+
return transport.handleRequest(c);
|
|
41
|
+
});
|
|
42
|
+
var mcp_default = app;
|
|
43
|
+
|
|
44
|
+
//#endregion
|
|
45
|
+
export { mcp_default as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OpenAPIHono } from "@hono/zod-openapi";
|
|
2
|
+
import { CredentialStoreRegistry, ServerConfig } from "@inkeep/agents-core";
|
|
3
|
+
|
|
4
|
+
//#region src/routes/mcpCatalog.d.ts
|
|
5
|
+
type AppVariables = {
|
|
6
|
+
serverConfig: ServerConfig;
|
|
7
|
+
credentialStores: CredentialStoreRegistry;
|
|
8
|
+
};
|
|
9
|
+
declare const app: OpenAPIHono<{
|
|
10
|
+
Variables: AppVariables;
|
|
11
|
+
}, {}, "/">;
|
|
12
|
+
//#endregion
|
|
13
|
+
export { app as default };
|
|
@@ -0,0 +1,454 @@
|
|
|
1
|
+
import { OpenAPIHono, createRoute } from "@hono/zod-openapi";
|
|
2
|
+
import { MCPCatalogListResponse, MCPTransportType, TenantProjectParamsSchema, commonGetErrorResponses, fetchComposioServers } from "@inkeep/agents-core";
|
|
3
|
+
|
|
4
|
+
//#region src/routes/mcpCatalog.ts
|
|
5
|
+
const app = new OpenAPIHono();
|
|
6
|
+
const PREBUILT_MCP_SERVERS = [
|
|
7
|
+
{
|
|
8
|
+
id: "apify",
|
|
9
|
+
name: "Apify",
|
|
10
|
+
url: "https://mcp.apify.com",
|
|
11
|
+
transport: MCPTransportType.streamableHttp,
|
|
12
|
+
imageUrl: "https://apify.com/img/apify-logo/logomark-32x32.svg",
|
|
13
|
+
category: "automation",
|
|
14
|
+
description: "Web scraping and automation platform"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
id: "asana",
|
|
18
|
+
name: "Asana",
|
|
19
|
+
url: "https://mcp.asana.com/sse",
|
|
20
|
+
transport: MCPTransportType.sse,
|
|
21
|
+
category: "project_management",
|
|
22
|
+
description: "Project management and team collaboration"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
id: "atlassian",
|
|
26
|
+
name: "Atlassian",
|
|
27
|
+
url: "https://mcp.atlassian.com/v1/sse",
|
|
28
|
+
transport: MCPTransportType.sse,
|
|
29
|
+
category: "project_management",
|
|
30
|
+
description: "Jira, Confluence, and other Atlassian products"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
id: "buildkite",
|
|
34
|
+
name: "Buildkite",
|
|
35
|
+
url: "https://mcp.buildkite.com/mcp",
|
|
36
|
+
transport: MCPTransportType.streamableHttp,
|
|
37
|
+
imageUrl: "https://buildkite.com/_astro/buildkite-mark.D56ywXpU.svg",
|
|
38
|
+
category: "ci_cd",
|
|
39
|
+
description: "Continuous integration and deployment"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
id: "canva",
|
|
43
|
+
name: "Canva",
|
|
44
|
+
url: "https://mcp.canva.com/mcp",
|
|
45
|
+
transport: MCPTransportType.streamableHttp,
|
|
46
|
+
category: "design",
|
|
47
|
+
description: "Graphic design and visual content creation"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
id: "carbon-voice",
|
|
51
|
+
name: "Carbon Voice",
|
|
52
|
+
url: "https://mcp.carbonvoice.app",
|
|
53
|
+
transport: MCPTransportType.streamableHttp,
|
|
54
|
+
imageUrl: "https://static.wixstatic.com/shapes/e97c23_633874d233a944aea7b424ae16e9efec.svg",
|
|
55
|
+
category: "communication",
|
|
56
|
+
description: "Voice and audio communication"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
id: "close",
|
|
60
|
+
name: "Close (CRM)",
|
|
61
|
+
url: "https://mcp.close.com/mcp",
|
|
62
|
+
transport: MCPTransportType.streamableHttp,
|
|
63
|
+
imageUrl: "https://cdn.prod.website-files.com/61717799a852418a278cfa9b/68793d8479790aec5ed95512_close-logo-color-atom.svg",
|
|
64
|
+
category: "crm",
|
|
65
|
+
description: "Customer relationship management"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
id: "cloudflare-docs",
|
|
69
|
+
name: "Cloudflare Docs",
|
|
70
|
+
url: "https://docs.mcp.cloudflare.com/sse",
|
|
71
|
+
transport: MCPTransportType.sse,
|
|
72
|
+
isOpen: true,
|
|
73
|
+
imageUrl: "https://www.cloudflare.com/favicon.ico",
|
|
74
|
+
category: "documentation",
|
|
75
|
+
description: "Cloudflare documentation search"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
id: "cloudflare-observability",
|
|
79
|
+
name: "Cloudflare Observability",
|
|
80
|
+
url: "https://observability.mcp.cloudflare.com/sse",
|
|
81
|
+
transport: MCPTransportType.sse,
|
|
82
|
+
imageUrl: "https://www.cloudflare.com/favicon.ico",
|
|
83
|
+
category: "monitoring",
|
|
84
|
+
description: "Cloudflare observability and monitoring"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
id: "cloudflare-workers",
|
|
88
|
+
name: "Cloudflare Workers Bindings",
|
|
89
|
+
url: "https://bindings.mcp.cloudflare.com/sse",
|
|
90
|
+
transport: MCPTransportType.sse,
|
|
91
|
+
imageUrl: "https://www.cloudflare.com/favicon.ico",
|
|
92
|
+
category: "infrastructure",
|
|
93
|
+
description: "Cloudflare Workers and serverless functions"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
id: "cloudinary",
|
|
97
|
+
name: "Cloudinary (Asset Management)",
|
|
98
|
+
url: "https://asset-management.mcp.cloudinary.com/sse",
|
|
99
|
+
transport: MCPTransportType.sse,
|
|
100
|
+
imageUrl: "https://cloudinary.com/wp-content/uploads/sites/6/2020/09/favicon-32x32-1.png",
|
|
101
|
+
category: "media",
|
|
102
|
+
description: "Digital asset management and media optimization"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
id: "deepwiki",
|
|
106
|
+
name: "DeepWiki",
|
|
107
|
+
url: "https://mcp.deepwiki.com/mcp",
|
|
108
|
+
transport: MCPTransportType.streamableHttp,
|
|
109
|
+
imageUrl: "https://deepwiki.org/apple-icon.png?a4f658907db0ab87",
|
|
110
|
+
isOpen: true,
|
|
111
|
+
category: "knowledge",
|
|
112
|
+
description: "Knowledge base and documentation search"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
id: "dodo-payments",
|
|
116
|
+
name: "Dodo Payments",
|
|
117
|
+
url: "https://mcp.dodopayments.com/sse",
|
|
118
|
+
transport: MCPTransportType.sse,
|
|
119
|
+
imageUrl: "https://docs.dodopayments.com/mintlify-assets/_mintlify/favicons/dodopayments/O4gqzjfBTOvqqqpw/_generated/favicon/favicon-32x32.png",
|
|
120
|
+
category: "payments",
|
|
121
|
+
description: "Payment processing and billing"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
id: "egnyte",
|
|
125
|
+
name: "Egnyte",
|
|
126
|
+
url: "https://mcp-server.egnyte.com/sse",
|
|
127
|
+
transport: MCPTransportType.sse,
|
|
128
|
+
category: "storage",
|
|
129
|
+
description: "Enterprise file sharing and collaboration"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
id: "fireflies",
|
|
133
|
+
name: "Fireflies",
|
|
134
|
+
url: "https://api.fireflies.ai/mcp",
|
|
135
|
+
transport: MCPTransportType.streamableHttp,
|
|
136
|
+
category: "communication",
|
|
137
|
+
description: "Meeting notes and transcription"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
id: "globalping",
|
|
141
|
+
name: "Globalping",
|
|
142
|
+
url: "https://mcp.globalping.dev/mcp",
|
|
143
|
+
transport: MCPTransportType.streamableHttp,
|
|
144
|
+
imageUrl: "https://globalping.io/icons/favicon-32x32.png",
|
|
145
|
+
category: "monitoring",
|
|
146
|
+
description: "Global network monitoring and testing"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
id: "huggingface",
|
|
150
|
+
name: "Hugging Face",
|
|
151
|
+
url: "https://huggingface.co/mcp?login",
|
|
152
|
+
transport: MCPTransportType.streamableHttp,
|
|
153
|
+
imageUrl: "https://huggingface.co/front/assets/huggingface_logo-noborder.svg",
|
|
154
|
+
category: "ai",
|
|
155
|
+
description: "Machine learning models and datasets"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
id: "instant",
|
|
159
|
+
name: "Instant (InstantDB)",
|
|
160
|
+
url: "https://mcp.instantdb.com/mcp",
|
|
161
|
+
transport: MCPTransportType.streamableHttp,
|
|
162
|
+
imageUrl: "https://www.instantdb.com/img/icon/logo-512.svg",
|
|
163
|
+
category: "database",
|
|
164
|
+
description: "Real-time database"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
id: "intercom",
|
|
168
|
+
name: "Intercom",
|
|
169
|
+
url: "https://mcp.intercom.com/mcp",
|
|
170
|
+
transport: MCPTransportType.streamableHttp,
|
|
171
|
+
category: "communication",
|
|
172
|
+
description: "Customer messaging and support"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
id: "invideo",
|
|
176
|
+
name: "Invideo",
|
|
177
|
+
url: "https://mcp.invideo.io/sse",
|
|
178
|
+
transport: MCPTransportType.sse,
|
|
179
|
+
isOpen: true,
|
|
180
|
+
imageUrl: "https://web-assets.invideo.io/favicons/prod/black_favicon.ico",
|
|
181
|
+
category: "media",
|
|
182
|
+
description: "Video creation and editing"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
id: "jam-dev",
|
|
186
|
+
name: "Jam.dev",
|
|
187
|
+
url: "https://mcp.jam.dev/mcp",
|
|
188
|
+
transport: MCPTransportType.streamableHttp,
|
|
189
|
+
imageUrl: "https://jam.dev/favicon.ico?cache-bust=2",
|
|
190
|
+
category: "development",
|
|
191
|
+
description: "Bug reporting and debugging"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
id: "linear",
|
|
195
|
+
name: "Linear",
|
|
196
|
+
url: "https://mcp.linear.app/mcp",
|
|
197
|
+
transport: MCPTransportType.streamableHttp,
|
|
198
|
+
category: "project_management",
|
|
199
|
+
description: "Issue tracking and project management"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
id: "monday",
|
|
203
|
+
name: "Monday",
|
|
204
|
+
url: "https://mcp.monday.com/sse",
|
|
205
|
+
transport: MCPTransportType.sse,
|
|
206
|
+
category: "project_management",
|
|
207
|
+
description: "Work operating system and project management"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
id: "needle",
|
|
211
|
+
name: "Needle",
|
|
212
|
+
url: "https://mcp.needle-ai.com/mcp",
|
|
213
|
+
transport: MCPTransportType.streamableHttp,
|
|
214
|
+
imageUrl: "https://needle.app/images/favicon.png",
|
|
215
|
+
category: "ai",
|
|
216
|
+
description: "AI-powered search and insights"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
id: "neon",
|
|
220
|
+
name: "Neon",
|
|
221
|
+
url: "https://mcp.neon.tech/mcp",
|
|
222
|
+
transport: MCPTransportType.streamableHttp,
|
|
223
|
+
imageUrl: "https://neon.com/favicon/favicon.png",
|
|
224
|
+
category: "database",
|
|
225
|
+
description: "Serverless Postgres database"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
id: "netlify",
|
|
229
|
+
name: "Netlify",
|
|
230
|
+
url: "https://netlify-mcp.netlify.app/mcp",
|
|
231
|
+
transport: MCPTransportType.streamableHttp,
|
|
232
|
+
imageUrl: "https://www.netlify.com/favicon/apple-touch-icon.png",
|
|
233
|
+
category: "infrastructure",
|
|
234
|
+
description: "Web hosting and deployment"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
id: "notion",
|
|
238
|
+
name: "Notion",
|
|
239
|
+
url: "https://mcp.notion.com/mcp",
|
|
240
|
+
transport: MCPTransportType.streamableHttp,
|
|
241
|
+
category: "knowledge",
|
|
242
|
+
description: "Notes, docs, and knowledge management"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
id: "octagon-agents",
|
|
246
|
+
name: "Octagon Agents (Market Intel)",
|
|
247
|
+
url: "https://mcp.octagonagents.com/mcp",
|
|
248
|
+
transport: MCPTransportType.streamableHttp,
|
|
249
|
+
imageUrl: "https://cdn.prod.website-files.com/67e20964923f8dc825a5dbd0/67e20964923f8dc825a5dc20_favico.png",
|
|
250
|
+
category: "analytics",
|
|
251
|
+
description: "Market intelligence and analytics"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
id: "paypal",
|
|
255
|
+
name: "PayPal",
|
|
256
|
+
url: "https://mcp.paypal.com",
|
|
257
|
+
transport: MCPTransportType.streamableHttp,
|
|
258
|
+
category: "payments",
|
|
259
|
+
description: "Payment processing"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
id: "pipeboard-meta-ads",
|
|
263
|
+
name: "Pipeboard – Meta Ads",
|
|
264
|
+
url: "https://mcp.pipeboard.co/meta-ads-mcp",
|
|
265
|
+
transport: MCPTransportType.streamableHttp,
|
|
266
|
+
imageUrl: "https://pipeboard.co/favicon.ico",
|
|
267
|
+
category: "marketing",
|
|
268
|
+
description: "Meta (Facebook) advertising management"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
id: "prisma",
|
|
272
|
+
name: "Prisma",
|
|
273
|
+
url: "https://mcp.prisma.io/mcp",
|
|
274
|
+
transport: MCPTransportType.streamableHttp,
|
|
275
|
+
imageUrl: "https://www.prisma.io/docs/img/favicon.png",
|
|
276
|
+
category: "database",
|
|
277
|
+
description: "Database ORM and toolkit"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
id: "ramp",
|
|
281
|
+
name: "Ramp",
|
|
282
|
+
url: "https://mcp.ramp.com/mcp",
|
|
283
|
+
transport: MCPTransportType.streamableHttp,
|
|
284
|
+
category: "finance",
|
|
285
|
+
description: "Corporate cards and spend management"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
id: "rube",
|
|
289
|
+
name: "Rube",
|
|
290
|
+
url: "https://rube.app/mcp",
|
|
291
|
+
transport: MCPTransportType.streamableHttp,
|
|
292
|
+
imageUrl: "https://rube.app/favicon.ico",
|
|
293
|
+
category: "automation",
|
|
294
|
+
description: "Workflow automation"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
id: "semgrep",
|
|
298
|
+
name: "Semgrep",
|
|
299
|
+
url: "https://mcp.semgrep.ai/mcp",
|
|
300
|
+
transport: MCPTransportType.streamableHttp,
|
|
301
|
+
imageUrl: "https://semgrep.dev/build/assets/favicon-CIx-xpG_.svg",
|
|
302
|
+
isOpen: true,
|
|
303
|
+
category: "security",
|
|
304
|
+
description: "Code security and static analysis"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
id: "sentry",
|
|
308
|
+
name: "Sentry",
|
|
309
|
+
url: "https://mcp.sentry.dev",
|
|
310
|
+
transport: MCPTransportType.streamableHttp,
|
|
311
|
+
category: "monitoring",
|
|
312
|
+
description: "Error tracking and performance monitoring"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
id: "simplescraper",
|
|
316
|
+
name: "Simplescraper",
|
|
317
|
+
url: "https://mcp.simplescraper.io/mcp",
|
|
318
|
+
transport: MCPTransportType.streamableHttp,
|
|
319
|
+
imageUrl: "https://simplescraper.io/favicon.ico",
|
|
320
|
+
category: "automation",
|
|
321
|
+
description: "Web scraping and data extraction"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
id: "square",
|
|
325
|
+
name: "Square",
|
|
326
|
+
url: "https://mcp.squareup.com/sse",
|
|
327
|
+
transport: MCPTransportType.sse,
|
|
328
|
+
imageUrl: "https://pw-renderer-production-c.squarecdn.com/c94e4b9deb6727292b842f0dc29355f408487bf2/_svelte/favicon.ico",
|
|
329
|
+
category: "payments",
|
|
330
|
+
description: "Point of sale and payment processing"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
id: "stripe",
|
|
334
|
+
name: "Stripe",
|
|
335
|
+
url: "https://mcp.stripe.com",
|
|
336
|
+
transport: MCPTransportType.streamableHttp,
|
|
337
|
+
category: "payments",
|
|
338
|
+
description: "Payment processing and billing"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
id: "stytch",
|
|
342
|
+
name: "Stytch",
|
|
343
|
+
url: "https://mcp.stytch.dev/mcp",
|
|
344
|
+
transport: MCPTransportType.streamableHttp,
|
|
345
|
+
imageUrl: "https://stytch.com/favicon.ico",
|
|
346
|
+
category: "authentication",
|
|
347
|
+
description: "User authentication and identity"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
id: "supabase",
|
|
351
|
+
name: "Supabase",
|
|
352
|
+
url: "https://mcp.supabase.com/mcp",
|
|
353
|
+
transport: MCPTransportType.streamableHttp,
|
|
354
|
+
category: "database",
|
|
355
|
+
description: "Open source Firebase alternative"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
id: "telnyx",
|
|
359
|
+
name: "Telnyx",
|
|
360
|
+
url: "https://api.telnyx.com/v2/mcp",
|
|
361
|
+
transport: MCPTransportType.streamableHttp,
|
|
362
|
+
imageUrl: "https://www.telnyx.com/favicon.ico",
|
|
363
|
+
category: "communication",
|
|
364
|
+
description: "Communications API platform"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
id: "thoughtspot",
|
|
368
|
+
name: "ThoughtSpot",
|
|
369
|
+
url: "https://agent.thoughtspot.app/mcp",
|
|
370
|
+
transport: MCPTransportType.streamableHttp,
|
|
371
|
+
imageUrl: "https://developers.thoughtspot.com/docs/icons/icon-48x48.png?v=3959c799205dc2ce6e1f1d93fd74d630",
|
|
372
|
+
category: "analytics",
|
|
373
|
+
description: "Analytics and business intelligence"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
id: "vercel",
|
|
377
|
+
name: "Vercel",
|
|
378
|
+
url: "https://mcp.vercel.com",
|
|
379
|
+
transport: MCPTransportType.streamableHttp,
|
|
380
|
+
category: "infrastructure",
|
|
381
|
+
description: "Web hosting and deployment platform"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
id: "waystation",
|
|
385
|
+
name: "WayStation",
|
|
386
|
+
url: "https://waystation.ai/mcp",
|
|
387
|
+
transport: MCPTransportType.streamableHttp,
|
|
388
|
+
imageUrl: "https://waystation.ai/images/logo.svg",
|
|
389
|
+
category: "ai",
|
|
390
|
+
description: "AI infrastructure and deployment"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
id: "webflow",
|
|
394
|
+
name: "Webflow",
|
|
395
|
+
url: "https://mcp.webflow.com/sse",
|
|
396
|
+
transport: MCPTransportType.sse,
|
|
397
|
+
category: "design",
|
|
398
|
+
description: "Website builder and CMS"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
id: "wix",
|
|
402
|
+
name: "Wix",
|
|
403
|
+
url: "https://mcp.wix.com/sse",
|
|
404
|
+
transport: MCPTransportType.sse,
|
|
405
|
+
imageUrl: "https://wix.com/favicon.ico",
|
|
406
|
+
category: "design",
|
|
407
|
+
description: "Website builder"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
id: "zapier",
|
|
411
|
+
name: "Zapier",
|
|
412
|
+
url: "https://mcp.zapier.com/api/mcp/mcp",
|
|
413
|
+
transport: MCPTransportType.streamableHttp,
|
|
414
|
+
category: "automation",
|
|
415
|
+
description: "Workflow automation and integration"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
id: "zine",
|
|
419
|
+
name: "Zine",
|
|
420
|
+
url: "https://www.zine.ai/mcp",
|
|
421
|
+
transport: MCPTransportType.streamableHttp,
|
|
422
|
+
imageUrl: "https://www.zine.ai/_next/image?url=%2Fimages%2Fzine-logo.png&w=64&q=75",
|
|
423
|
+
category: "ai",
|
|
424
|
+
description: "AI-powered content creation"
|
|
425
|
+
}
|
|
426
|
+
];
|
|
427
|
+
app.openapi(createRoute({
|
|
428
|
+
method: "get",
|
|
429
|
+
path: "/",
|
|
430
|
+
summary: "List MCP Server Catalog",
|
|
431
|
+
operationId: "list-mcp-catalog",
|
|
432
|
+
tags: ["MCP Catalog"],
|
|
433
|
+
description: "Get a list of available prebuilt MCP servers. If COMPOSIO_API_KEY is configured, also includes Composio servers for the tenant/project.",
|
|
434
|
+
request: { params: TenantProjectParamsSchema },
|
|
435
|
+
responses: {
|
|
436
|
+
200: {
|
|
437
|
+
description: "List of available MCP servers",
|
|
438
|
+
content: { "application/json": { schema: MCPCatalogListResponse } }
|
|
439
|
+
},
|
|
440
|
+
...commonGetErrorResponses
|
|
441
|
+
}
|
|
442
|
+
}), async (c) => {
|
|
443
|
+
c.req.valid("param");
|
|
444
|
+
const composioServers = await fetchComposioServers();
|
|
445
|
+
const allServers = [...PREBUILT_MCP_SERVERS, ...composioServers].sort((a, b) => a.name.localeCompare(b.name));
|
|
446
|
+
return c.json({
|
|
447
|
+
data: allServers,
|
|
448
|
+
total: allServers.length
|
|
449
|
+
});
|
|
450
|
+
});
|
|
451
|
+
var mcpCatalog_default = app;
|
|
452
|
+
|
|
453
|
+
//#endregion
|
|
454
|
+
export { mcpCatalog_default as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PublicAppVariablesWithServerConfig } from "../types/app.js";
|
|
2
|
+
import { OpenAPIHono } from "@hono/zod-openapi";
|
|
3
|
+
|
|
4
|
+
//#region src/routes/oauth.d.ts
|
|
5
|
+
|
|
6
|
+
declare const app: OpenAPIHono<{
|
|
7
|
+
Variables: PublicAppVariablesWithServerConfig;
|
|
8
|
+
}, {}, "/">;
|
|
9
|
+
//#endregion
|
|
10
|
+
export { app as default };
|