1. Registry
  2. Packages
  3. Konnect Provider
  4. API Docs
  5. CatalogMcpImplementation
Viewing docs for konnect 3.23.0
published on Friday, Sep 18, 2026 by kong
Viewing docs for konnect 3.23.0
published on Friday, Sep 18, 2026 by kong

    CatalogMCPImplementation Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const myCatalogmcpimplementation = new konnect.CatalogMcpImplementation("my_catalogmcpimplementation", {
        aiGatewayMcpCatalog: {
            implementation: {
                config: {
                    aiGatewayId: "223e4567-e89b-12d3-a456-426614174999",
                    aiGatewayMcpServerId: "79087145-0159-4811-9042-6a9365f234bc",
                },
            },
        },
        catalogMcpId: "a0119846-f179-4d9f-a168-d701facce7fb",
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_catalogmcpimplementation = konnect.CatalogMcpImplementation("my_catalogmcpimplementation",
        ai_gateway_mcp_catalog={
            "implementation": {
                "config": {
                    "ai_gateway_id": "223e4567-e89b-12d3-a456-426614174999",
                    "ai_gateway_mcp_server_id": "79087145-0159-4811-9042-6a9365f234bc",
                },
            },
        },
        catalog_mcp_id="a0119846-f179-4d9f-a168-d701facce7fb")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/konnect/v3/konnect"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := konnect.NewCatalogMcpImplementation(ctx, "my_catalogmcpimplementation", &konnect.CatalogMcpImplementationArgs{
    			AiGatewayMcpCatalog: &konnect.CatalogMcpImplementationAiGatewayMcpCatalogArgs{
    				Implementation: &konnect.CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs{
    					Config: &konnect.CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs{
    						AiGatewayId:          pulumi.String("223e4567-e89b-12d3-a456-426614174999"),
    						AiGatewayMcpServerId: pulumi.String("79087145-0159-4811-9042-6a9365f234bc"),
    					},
    				},
    			},
    			CatalogMcpId: pulumi.String("a0119846-f179-4d9f-a168-d701facce7fb"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Konnect = Pulumi.Konnect;
    
    return await Deployment.RunAsync(() => 
    {
        var myCatalogmcpimplementation = new Konnect.CatalogMcpImplementation("my_catalogmcpimplementation", new()
        {
            AiGatewayMcpCatalog = new Konnect.Inputs.CatalogMcpImplementationAiGatewayMcpCatalogArgs
            {
                Implementation = new Konnect.Inputs.CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs
                {
                    Config = new Konnect.Inputs.CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs
                    {
                        AiGatewayId = "223e4567-e89b-12d3-a456-426614174999",
                        AiGatewayMcpServerId = "79087145-0159-4811-9042-6a9365f234bc",
                    },
                },
            },
            CatalogMcpId = "a0119846-f179-4d9f-a168-d701facce7fb",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.CatalogMcpImplementation;
    import com.pulumi.konnect.CatalogMcpImplementationArgs;
    import com.pulumi.konnect.inputs.CatalogMcpImplementationAiGatewayMcpCatalogArgs;
    import com.pulumi.konnect.inputs.CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs;
    import com.pulumi.konnect.inputs.CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var myCatalogmcpimplementation = new CatalogMcpImplementation("myCatalogmcpimplementation", CatalogMcpImplementationArgs.builder()
                .aiGatewayMcpCatalog(CatalogMcpImplementationAiGatewayMcpCatalogArgs.builder()
                    .implementation(CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs.builder()
                        .config(CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs.builder()
                            .aiGatewayId("223e4567-e89b-12d3-a456-426614174999")
                            .aiGatewayMcpServerId("79087145-0159-4811-9042-6a9365f234bc")
                            .build())
                        .build())
                    .build())
                .catalogMcpId("a0119846-f179-4d9f-a168-d701facce7fb")
                .build());
    
        }
    }
    
    resources:
      myCatalogmcpimplementation:
        type: konnect:CatalogMcpImplementation
        name: my_catalogmcpimplementation
        properties:
          aiGatewayMcpCatalog:
            implementation:
              config:
                aiGatewayId: 223e4567-e89b-12d3-a456-426614174999
                aiGatewayMcpServerId: 79087145-0159-4811-9042-6a9365f234bc
          catalogMcpId: a0119846-f179-4d9f-a168-d701facce7fb
    
    Example coming soon!
    

    Create CatalogMcpImplementation Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CatalogMcpImplementation(name: string, args: CatalogMcpImplementationArgs, opts?: CustomResourceOptions);
    @overload
    def CatalogMcpImplementation(resource_name: str,
                                 args: CatalogMcpImplementationArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def CatalogMcpImplementation(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 catalog_mcp_id: Optional[str] = None,
                                 ai_gateway_mcp_catalog: Optional[CatalogMcpImplementationAiGatewayMcpCatalogArgs] = None)
    func NewCatalogMcpImplementation(ctx *Context, name string, args CatalogMcpImplementationArgs, opts ...ResourceOption) (*CatalogMcpImplementation, error)
    public CatalogMcpImplementation(string name, CatalogMcpImplementationArgs args, CustomResourceOptions? opts = null)
    public CatalogMcpImplementation(String name, CatalogMcpImplementationArgs args)
    public CatalogMcpImplementation(String name, CatalogMcpImplementationArgs args, CustomResourceOptions options)
    
    type: konnect:CatalogMcpImplementation
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "konnect_catalog_mcp_implementation" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args CatalogMcpImplementationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args CatalogMcpImplementationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args CatalogMcpImplementationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CatalogMcpImplementationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CatalogMcpImplementationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var catalogMcpImplementationResource = new Konnect.CatalogMcpImplementation("catalogMcpImplementationResource", new()
    {
        CatalogMcpId = "string",
        AiGatewayMcpCatalog = new Konnect.Inputs.CatalogMcpImplementationAiGatewayMcpCatalogArgs
        {
            CreatedAt = "string",
            Id = "string",
            Implementation = new Konnect.Inputs.CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs
            {
                Config = new Konnect.Inputs.CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs
                {
                    AiGatewayId = "string",
                    AiGatewayMcpServerId = "string",
                },
            },
            UpdatedAt = "string",
        },
    });
    
    example, err := konnect.NewCatalogMcpImplementation(ctx, "catalogMcpImplementationResource", &konnect.CatalogMcpImplementationArgs{
    	CatalogMcpId: pulumi.String("string"),
    	AiGatewayMcpCatalog: &konnect.CatalogMcpImplementationAiGatewayMcpCatalogArgs{
    		CreatedAt: pulumi.String("string"),
    		Id:        pulumi.String("string"),
    		Implementation: &konnect.CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs{
    			Config: &konnect.CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs{
    				AiGatewayId:          pulumi.String("string"),
    				AiGatewayMcpServerId: pulumi.String("string"),
    			},
    		},
    		UpdatedAt: pulumi.String("string"),
    	},
    })
    
    resource "konnect_catalog_mcp_implementation" "catalogMcpImplementationResource" {
      lifecycle {
        create_before_destroy = true
      }
      catalog_mcp_id = "string"
      ai_gateway_mcp_catalog = {
        created_at = "string"
        id         = "string"
        implementation = {
          config = {
            ai_gateway_id            = "string"
            ai_gateway_mcp_server_id = "string"
          }
        }
        updated_at = "string"
      }
    }
    
    var catalogMcpImplementationResource = new CatalogMcpImplementation("catalogMcpImplementationResource", CatalogMcpImplementationArgs.builder()
        .catalogMcpId("string")
        .aiGatewayMcpCatalog(CatalogMcpImplementationAiGatewayMcpCatalogArgs.builder()
            .createdAt("string")
            .id("string")
            .implementation(CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs.builder()
                .config(CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs.builder()
                    .aiGatewayId("string")
                    .aiGatewayMcpServerId("string")
                    .build())
                .build())
            .updatedAt("string")
            .build())
        .build());
    
    catalog_mcp_implementation_resource = konnect.CatalogMcpImplementation("catalogMcpImplementationResource",
        catalog_mcp_id="string",
        ai_gateway_mcp_catalog={
            "created_at": "string",
            "id": "string",
            "implementation": {
                "config": {
                    "ai_gateway_id": "string",
                    "ai_gateway_mcp_server_id": "string",
                },
            },
            "updated_at": "string",
        })
    
    const catalogMcpImplementationResource = new konnect.CatalogMcpImplementation("catalogMcpImplementationResource", {
        catalogMcpId: "string",
        aiGatewayMcpCatalog: {
            createdAt: "string",
            id: "string",
            implementation: {
                config: {
                    aiGatewayId: "string",
                    aiGatewayMcpServerId: "string",
                },
            },
            updatedAt: "string",
        },
    });
    
    type: konnect:CatalogMcpImplementation
    properties:
        aiGatewayMcpCatalog:
            createdAt: string
            id: string
            implementation:
                config:
                    aiGatewayId: string
                    aiGatewayMcpServerId: string
            updatedAt: string
        catalogMcpId: string
    

    CatalogMcpImplementation Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The CatalogMcpImplementation resource accepts the following input properties:

    CatalogMcpId string
    The unique identifier of the MCP. Requires replacement if changed.
    AiGatewayMcpCatalog CatalogMcpImplementationAiGatewayMcpCatalog
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
    CatalogMcpId string
    The unique identifier of the MCP. Requires replacement if changed.
    AiGatewayMcpCatalog CatalogMcpImplementationAiGatewayMcpCatalogArgs
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
    catalog_mcp_id string
    The unique identifier of the MCP. Requires replacement if changed.
    ai_gateway_mcp_catalog object
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
    catalogMcpId String
    The unique identifier of the MCP. Requires replacement if changed.
    aiGatewayMcpCatalog CatalogMcpImplementationAiGatewayMcpCatalog
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
    catalogMcpId string
    The unique identifier of the MCP. Requires replacement if changed.
    aiGatewayMcpCatalog CatalogMcpImplementationAiGatewayMcpCatalog
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
    catalog_mcp_id str
    The unique identifier of the MCP. Requires replacement if changed.
    ai_gateway_mcp_catalog CatalogMcpImplementationAiGatewayMcpCatalogArgs
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
    catalogMcpId String
    The unique identifier of the MCP. Requires replacement if changed.
    aiGatewayMcpCatalog Property Map
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CatalogMcpImplementation resource produces the following output properties:

    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Id string
    The provider-assigned unique ID for this managed resource.
    Implementation CatalogMcpImplementationImplementation
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Id string
    The provider-assigned unique ID for this managed resource.
    Implementation CatalogMcpImplementationImplementation
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    created_at string
    An ISO-8601 timestamp representation of entity creation date.
    id string
    The provider-assigned unique ID for this managed resource.
    implementation object
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    updated_at string
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    id String
    The provider-assigned unique ID for this managed resource.
    implementation CatalogMcpImplementationImplementation
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    id string
    The provider-assigned unique ID for this managed resource.
    implementation CatalogMcpImplementationImplementation
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    created_at str
    An ISO-8601 timestamp representation of entity creation date.
    id str
    The provider-assigned unique ID for this managed resource.
    implementation CatalogMcpImplementationImplementation
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    id String
    The provider-assigned unique ID for this managed resource.
    implementation Property Map
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    Look up Existing CatalogMcpImplementation Resource

    Get an existing CatalogMcpImplementation resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: CatalogMcpImplementationState, opts?: CustomResourceOptions): CatalogMcpImplementation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ai_gateway_mcp_catalog: Optional[CatalogMcpImplementationAiGatewayMcpCatalogArgs] = None,
            catalog_mcp_id: Optional[str] = None,
            created_at: Optional[str] = None,
            implementation: Optional[CatalogMcpImplementationImplementationArgs] = None,
            updated_at: Optional[str] = None) -> CatalogMcpImplementation
    func GetCatalogMcpImplementation(ctx *Context, name string, id IDInput, state *CatalogMcpImplementationState, opts ...ResourceOption) (*CatalogMcpImplementation, error)
    public static CatalogMcpImplementation Get(string name, Input<string> id, CatalogMcpImplementationState? state, CustomResourceOptions? opts = null)
    public static CatalogMcpImplementation get(String name, Output<String> id, CatalogMcpImplementationState state, CustomResourceOptions options)
    resources:  _:    type: konnect:CatalogMcpImplementation    get:      id: ${id}
    import {
      to = konnect_catalog_mcp_implementation.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AiGatewayMcpCatalog CatalogMcpImplementationAiGatewayMcpCatalog
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
    CatalogMcpId string
    The unique identifier of the MCP. Requires replacement if changed.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Implementation CatalogMcpImplementationImplementation
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    AiGatewayMcpCatalog CatalogMcpImplementationAiGatewayMcpCatalogArgs
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
    CatalogMcpId string
    The unique identifier of the MCP. Requires replacement if changed.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Implementation CatalogMcpImplementationImplementationArgs
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    ai_gateway_mcp_catalog object
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
    catalog_mcp_id string
    The unique identifier of the MCP. Requires replacement if changed.
    created_at string
    An ISO-8601 timestamp representation of entity creation date.
    implementation object
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    updated_at string
    An ISO-8601 timestamp representation of entity update date.
    aiGatewayMcpCatalog CatalogMcpImplementationAiGatewayMcpCatalog
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
    catalogMcpId String
    The unique identifier of the MCP. Requires replacement if changed.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    implementation CatalogMcpImplementationImplementation
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    aiGatewayMcpCatalog CatalogMcpImplementationAiGatewayMcpCatalog
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
    catalogMcpId string
    The unique identifier of the MCP. Requires replacement if changed.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    implementation CatalogMcpImplementationImplementation
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    ai_gateway_mcp_catalog CatalogMcpImplementationAiGatewayMcpCatalogArgs
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
    catalog_mcp_id str
    The unique identifier of the MCP. Requires replacement if changed.
    created_at str
    An ISO-8601 timestamp representation of entity creation date.
    implementation CatalogMcpImplementationImplementationArgs
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    aiGatewayMcpCatalog Property Map
    An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
    catalogMcpId String
    The unique identifier of the MCP. Requires replacement if changed.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    implementation Property Map
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    Supporting Types

    CatalogMcpImplementationAiGatewayMcpCatalog, CatalogMcpImplementationAiGatewayMcpCatalogArgs

    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Id string
    The unique identifier of the implementation (link) record.
    Implementation CatalogMcpImplementationAiGatewayMcpCatalogImplementation
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Id string
    The unique identifier of the implementation (link) record.
    Implementation CatalogMcpImplementationAiGatewayMcpCatalogImplementation
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    created_at string
    An ISO-8601 timestamp representation of entity creation date.
    id string
    The unique identifier of the implementation (link) record.
    implementation object
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
    updated_at string
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    id String
    The unique identifier of the implementation (link) record.
    implementation CatalogMcpImplementationAiGatewayMcpCatalogImplementation
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    id string
    The unique identifier of the implementation (link) record.
    implementation CatalogMcpImplementationAiGatewayMcpCatalogImplementation
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    created_at str
    An ISO-8601 timestamp representation of entity creation date.
    id str
    The unique identifier of the implementation (link) record.
    implementation CatalogMcpImplementationAiGatewayMcpCatalogImplementation
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    id String
    The unique identifier of the implementation (link) record.
    implementation Property Map
    Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    CatalogMcpImplementationAiGatewayMcpCatalogImplementation, CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs

    Config CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfig
    Configuration for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
    Config CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfig
    Configuration for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
    config object
    Configuration for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
    config CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfig
    Configuration for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
    config CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfig
    Configuration for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
    config CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfig
    Configuration for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
    config Property Map
    Configuration for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.

    CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfig, CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs

    AiGatewayId string
    The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
    AiGatewayMcpServerId string
    The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.
    AiGatewayId string
    The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
    AiGatewayMcpServerId string
    The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.
    ai_gateway_id string
    The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
    ai_gateway_mcp_server_id string
    The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.
    aiGatewayId String
    The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
    aiGatewayMcpServerId String
    The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.
    aiGatewayId string
    The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
    aiGatewayMcpServerId string
    The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.
    ai_gateway_id str
    The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
    ai_gateway_mcp_server_id str
    The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.
    aiGatewayId String
    The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
    aiGatewayMcpServerId String
    The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.

    CatalogMcpImplementationImplementation, CatalogMcpImplementationImplementationArgs

    Config CatalogMcpImplementationImplementationConfig
    Configuration for an MCP implementation linked to an AI Gateway MCP Server.
    Config CatalogMcpImplementationImplementationConfig
    Configuration for an MCP implementation linked to an AI Gateway MCP Server.
    config object
    Configuration for an MCP implementation linked to an AI Gateway MCP Server.
    config CatalogMcpImplementationImplementationConfig
    Configuration for an MCP implementation linked to an AI Gateway MCP Server.
    config CatalogMcpImplementationImplementationConfig
    Configuration for an MCP implementation linked to an AI Gateway MCP Server.
    config CatalogMcpImplementationImplementationConfig
    Configuration for an MCP implementation linked to an AI Gateway MCP Server.
    config Property Map
    Configuration for an MCP implementation linked to an AI Gateway MCP Server.

    CatalogMcpImplementationImplementationConfig, CatalogMcpImplementationImplementationConfigArgs

    AiGatewayId string
    The AI Gateway control plane the linked model belongs to.
    AiGatewayMcpServerId string
    The identifier of the linked AI Gateway MCP server.
    AiGatewayId string
    The AI Gateway control plane the linked model belongs to.
    AiGatewayMcpServerId string
    The identifier of the linked AI Gateway MCP server.
    ai_gateway_id string
    The AI Gateway control plane the linked model belongs to.
    ai_gateway_mcp_server_id string
    The identifier of the linked AI Gateway MCP server.
    aiGatewayId String
    The AI Gateway control plane the linked model belongs to.
    aiGatewayMcpServerId String
    The identifier of the linked AI Gateway MCP server.
    aiGatewayId string
    The AI Gateway control plane the linked model belongs to.
    aiGatewayMcpServerId string
    The identifier of the linked AI Gateway MCP server.
    ai_gateway_id str
    The AI Gateway control plane the linked model belongs to.
    ai_gateway_mcp_server_id str
    The identifier of the linked AI Gateway MCP server.
    aiGatewayId String
    The AI Gateway control plane the linked model belongs to.
    aiGatewayMcpServerId String
    The identifier of the linked AI Gateway MCP server.

    Import

    In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:

    terraform

    import {

    to = konnect_catalog_mcp_implementation.my_konnect_catalog_mcp_implementation

    id = jsonencode({

    catalog_mcp_id = "a0119846-f179-4d9f-a168-d701facce7fb"
    
    id             = "7703e2f2-f9c0-47e3-9146-5fa50486b871"
    

    })

    }

    The pulumi import command can be used, for example:

    $ pulumi import konnect:index/catalogMcpImplementation:CatalogMcpImplementation my_konnect_catalog_mcp_implementation '{"catalog_mcp_id": "a0119846-f179-4d9f-a168-d701facce7fb", "id": "7703e2f2-f9c0-47e3-9146-5fa50486b871"}'
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    konnect kong/terraform-provider-konnect
    License
    Notes
    This Pulumi package is based on the konnect Terraform Provider.
    Viewing docs for konnect 3.23.0
    published on Friday, Sep 18, 2026 by kong

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial