Save Mcp Integration
save Mcp Integration.
An integration connects an external provider to this module. Configure the provider and its secrets in the dashboard; the API lets you list, create or update, enable, disable, set a default, and test integrations. This method creates the mcp integration and returns its id. POST /{version}/ai/integrations/mcp/
This method is on the Hub surface (norbix.hub.ai) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.ai.saveMcpIntegration();using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Ai.SaveMcpIntegrationAsync(new SaveMcpIntegration());from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.ai.save_mcp_integration()c, _ := norbix.New(norbix.Options{})
ctx := context.Background()
var result map[string]any
err := c.Hub.Ai.SaveMcpIntegration(ctx, nil, &result)import 'package:norbix/norbix_hub.dart';
final hub = NorbixHub();
final result = await hub.aiIntegrations.saveMcpIntegration();In the dashboard
Manage this visually in Norbix Cloud — see AI Integrations → Integrations.
API reference
Full request and response for this endpoint: Save Mcp Integration.
Last updated