(slug: string)
| 1094 | ); |
| 1095 | |
| 1096 | const getServer = (slug: string) => |
| 1097 | ctx.core.integrations.get(slugFrom(slug)).pipe( |
| 1098 | Effect.withSpan("mcp.plugin.get_server", { |
| 1099 | attributes: { "mcp.integration.slug": slug }, |
| 1100 | }), |
| 1101 | ); |
| 1102 | |
| 1103 | const configureServer = (slug: string, config: McpIntegrationConfigType) => |
| 1104 | ctx.core.integrations.update(slugFrom(slug), { config }).pipe( |