d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
79 lines
2.9 KiB
TypeScript
79 lines
2.9 KiB
TypeScript
import { db } from '@sim/db'
|
|
import { workflow, workflowBlocks } from '@sim/db/schema'
|
|
import { createLogger } from '@sim/logger'
|
|
import { toError } from '@sim/utils/errors'
|
|
import { and, eq, inArray } from 'drizzle-orm'
|
|
import type { NextRequest } from 'next/server'
|
|
import { withRouteHandler } from '@/lib/core/utils/with-route-handler'
|
|
import { withMcpAuth } from '@/lib/mcp/middleware'
|
|
import type { McpToolSchema, StoredMcpTool } from '@/lib/mcp/types'
|
|
import { createMcpErrorResponse, createMcpSuccessResponse } from '@/lib/mcp/utils'
|
|
|
|
const logger = createLogger('McpStoredToolsAPI')
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
export const GET = withRouteHandler(
|
|
withMcpAuth('read')(async (request: NextRequest, { userId, workspaceId, requestId }) => {
|
|
try {
|
|
logger.info(`[${requestId}] Fetching stored MCP tools for workspace ${workspaceId}`)
|
|
|
|
const workflows = await db
|
|
.select({ id: workflow.id, name: workflow.name })
|
|
.from(workflow)
|
|
.where(eq(workflow.workspaceId, workspaceId))
|
|
|
|
const workflowMap = new Map(workflows.map((w) => [w.id, w.name]))
|
|
const workflowIds = workflows.map((w) => w.id)
|
|
|
|
if (workflowIds.length === 0) {
|
|
return createMcpSuccessResponse({ tools: [] })
|
|
}
|
|
|
|
const agentBlocks = await db
|
|
.select({ workflowId: workflowBlocks.workflowId, subBlocks: workflowBlocks.subBlocks })
|
|
.from(workflowBlocks)
|
|
.where(
|
|
and(eq(workflowBlocks.type, 'agent'), inArray(workflowBlocks.workflowId, workflowIds))
|
|
)
|
|
|
|
const storedTools: StoredMcpTool[] = []
|
|
|
|
for (const block of agentBlocks) {
|
|
const subBlocks = block.subBlocks as Record<string, unknown> | null
|
|
if (!subBlocks) continue
|
|
|
|
const toolsSubBlock = subBlocks.tools as Record<string, unknown> | undefined
|
|
const toolsValue = toolsSubBlock?.value
|
|
|
|
if (!toolsValue || !Array.isArray(toolsValue)) continue
|
|
|
|
for (const tool of toolsValue) {
|
|
if (tool.type !== 'mcp') continue
|
|
|
|
const params = tool.params as Record<string, unknown> | undefined
|
|
if (!params?.serverId || !params?.toolName) continue
|
|
|
|
storedTools.push({
|
|
workflowId: block.workflowId,
|
|
workflowName: workflowMap.get(block.workflowId) || 'Untitled',
|
|
serverId: params.serverId as string,
|
|
serverUrl: params.serverUrl as string | undefined,
|
|
toolName: params.toolName as string,
|
|
schema: tool.schema as McpToolSchema | undefined,
|
|
})
|
|
}
|
|
}
|
|
|
|
logger.info(
|
|
`[${requestId}] Found ${storedTools.length} stored MCP tools across ${workflows.length} workflows`
|
|
)
|
|
|
|
return createMcpSuccessResponse({ tools: storedTools })
|
|
} catch (error) {
|
|
logger.error(`[${requestId}] Error fetching stored MCP tools:`, error)
|
|
return createMcpErrorResponse(toError(error), 'Failed to fetch stored MCP tools', 500)
|
|
}
|
|
})
|
|
)
|