1. Registry
  2. Packages
  3. Konnect Provider
  4. API Docs
  5. CatalogMcp
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

    CatalogMCP Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const myCatalogmcp = new konnect.CatalogMcp("my_catalogmcp", {
        description: "Customer support triage model",
        displayName: "My MCP",
        labels: {
            key: "value",
        },
        name: "my-mcp",
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_catalogmcp = konnect.CatalogMcp("my_catalogmcp",
        description="Customer support triage model",
        display_name="My MCP",
        labels={
            "key": "value",
        },
        name="my-mcp")
    
    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.NewCatalogMcp(ctx, "my_catalogmcp", &konnect.CatalogMcpArgs{
    			Description: pulumi.String("Customer support triage model"),
    			DisplayName: pulumi.String("My MCP"),
    			Labels: pulumi.StringMap{
    				"key": pulumi.String("value"),
    			},
    			Name: pulumi.String("my-mcp"),
    		})
    		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 myCatalogmcp = new Konnect.CatalogMcp("my_catalogmcp", new()
        {
            Description = "Customer support triage model",
            DisplayName = "My MCP",
            Labels = 
            {
                { "key", "value" },
            },
            Name = "my-mcp",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.CatalogMcp;
    import com.pulumi.konnect.CatalogMcpArgs;
    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 myCatalogmcp = new CatalogMcp("myCatalogmcp", CatalogMcpArgs.builder()
                .description("Customer support triage model")
                .displayName("My MCP")
                .labels(Map.of("key", "value"))
                .name("my-mcp")
                .build());
    
        }
    }
    
    resources:
      myCatalogmcp:
        type: konnect:CatalogMcp
        name: my_catalogmcp
        properties:
          description: Customer support triage model
          displayName: My MCP
          labels:
            key: value
          name: my-mcp
    
    Example coming soon!
    

    Create CatalogMcp Resource

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

    Constructor syntax

    new CatalogMcp(name: string, args: CatalogMcpArgs, opts?: CustomResourceOptions);
    @overload
    def CatalogMcp(resource_name: str,
                   args: CatalogMcpArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def CatalogMcp(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   display_name: Optional[str] = None,
                   description: Optional[str] = None,
                   labels: Optional[Mapping[str, str]] = None,
                   name: Optional[str] = None)
    func NewCatalogMcp(ctx *Context, name string, args CatalogMcpArgs, opts ...ResourceOption) (*CatalogMcp, error)
    public CatalogMcp(string name, CatalogMcpArgs args, CustomResourceOptions? opts = null)
    public CatalogMcp(String name, CatalogMcpArgs args)
    public CatalogMcp(String name, CatalogMcpArgs args, CustomResourceOptions options)
    
    type: konnect:CatalogMcp
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "konnect_catalog_mcp" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args CatalogMcpArgs
    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 CatalogMcpArgs
    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 CatalogMcpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CatalogMcpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CatalogMcpArgs
    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 catalogMcpResource = new Konnect.CatalogMcp("catalogMcpResource", new()
    {
        DisplayName = "string",
        Description = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Name = "string",
    });
    
    example, err := konnect.NewCatalogMcp(ctx, "catalogMcpResource", &konnect.CatalogMcpArgs{
    	DisplayName: pulumi.String("string"),
    	Description: pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    })
    
    resource "konnect_catalog_mcp" "catalogMcpResource" {
      lifecycle {
        create_before_destroy = true
      }
      display_name = "string"
      description  = "string"
      labels = {
        "string" = "string"
      }
      name = "string"
    }
    
    var catalogMcpResource = new CatalogMcp("catalogMcpResource", CatalogMcpArgs.builder()
        .displayName("string")
        .description("string")
        .labels(Map.of("string", "string"))
        .name("string")
        .build());
    
    catalog_mcp_resource = konnect.CatalogMcp("catalogMcpResource",
        display_name="string",
        description="string",
        labels={
            "string": "string",
        },
        name="string")
    
    const catalogMcpResource = new konnect.CatalogMcp("catalogMcpResource", {
        displayName: "string",
        description: "string",
        labels: {
            string: "string",
        },
        name: "string",
    });
    
    type: konnect:CatalogMcp
    properties:
        description: string
        displayName: string
        labels:
            string: string
        name: string
    

    CatalogMcp 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 CatalogMcp resource accepts the following input properties:

    DisplayName string
    The display name of the MCP.
    Description string
    Optionally provide a description of the MCP.
    Labels Dictionary<string, string>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    Name string
    The machine name of the MCP that uniquely identifies it within the catalog.
    DisplayName string
    The display name of the MCP.
    Description string
    Optionally provide a description of the MCP.
    Labels map[string]string
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    Name string
    The machine name of the MCP that uniquely identifies it within the catalog.
    display_name string
    The display name of the MCP.
    description string
    Optionally provide a description of the MCP.
    labels map(string)
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    name string
    The machine name of the MCP that uniquely identifies it within the catalog.
    displayName String
    The display name of the MCP.
    description String
    Optionally provide a description of the MCP.
    labels Map<String,String>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    name String
    The machine name of the MCP that uniquely identifies it within the catalog.
    displayName string
    The display name of the MCP.
    description string
    Optionally provide a description of the MCP.
    labels {[key: string]: string}
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    name string
    The machine name of the MCP that uniquely identifies it within the catalog.
    display_name str
    The display name of the MCP.
    description str
    Optionally provide a description of the MCP.
    labels Mapping[str, str]
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    name str
    The machine name of the MCP that uniquely identifies it within the catalog.
    displayName String
    The display name of the MCP.
    description String
    Optionally provide a description of the MCP.
    labels Map<String>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    name String
    The machine name of the MCP that uniquely identifies it within the catalog.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CatalogMcp 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.
    ManagedBy Dictionary<string, string>
    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.
    ManagedBy map[string]string
    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.
    managed_by map(string)
    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.
    managedBy Map<String,String>
    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.
    managedBy {[key: string]: string}
    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.
    managed_by Mapping[str, str]
    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.
    managedBy Map<String>
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    Look up Existing CatalogMcp Resource

    Get an existing CatalogMcp 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?: CatalogMcpState, opts?: CustomResourceOptions): CatalogMcp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            managed_by: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            updated_at: Optional[str] = None) -> CatalogMcp
    func GetCatalogMcp(ctx *Context, name string, id IDInput, state *CatalogMcpState, opts ...ResourceOption) (*CatalogMcp, error)
    public static CatalogMcp Get(string name, Input<string> id, CatalogMcpState? state, CustomResourceOptions? opts = null)
    public static CatalogMcp get(String name, Output<String> id, CatalogMcpState state, CustomResourceOptions options)
    resources:  _:    type: konnect:CatalogMcp    get:      id: ${id}
    import {
      to = konnect_catalog_mcp.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:
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Description string
    Optionally provide a description of the MCP.
    DisplayName string
    The display name of the MCP.
    Labels Dictionary<string, string>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    ManagedBy Dictionary<string, string>
    Name string
    The machine name of the MCP that uniquely identifies it within the catalog.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Description string
    Optionally provide a description of the MCP.
    DisplayName string
    The display name of the MCP.
    Labels map[string]string
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    ManagedBy map[string]string
    Name string
    The machine name of the MCP that uniquely identifies it within the catalog.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    created_at string
    An ISO-8601 timestamp representation of entity creation date.
    description string
    Optionally provide a description of the MCP.
    display_name string
    The display name of the MCP.
    labels map(string)
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    managed_by map(string)
    name string
    The machine name of the MCP that uniquely identifies it within the catalog.
    updated_at string
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    description String
    Optionally provide a description of the MCP.
    displayName String
    The display name of the MCP.
    labels Map<String,String>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    managedBy Map<String,String>
    name String
    The machine name of the MCP that uniquely identifies it within the catalog.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    description string
    Optionally provide a description of the MCP.
    displayName string
    The display name of the MCP.
    labels {[key: string]: string}
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    managedBy {[key: string]: string}
    name string
    The machine name of the MCP that uniquely identifies it within the catalog.
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    created_at str
    An ISO-8601 timestamp representation of entity creation date.
    description str
    Optionally provide a description of the MCP.
    display_name str
    The display name of the MCP.
    labels Mapping[str, str]
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    managed_by Mapping[str, str]
    name str
    The machine name of the MCP that uniquely identifies it within the catalog.
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    description String
    Optionally provide a description of the MCP.
    displayName String
    The display name of the MCP.
    labels Map<String>
    Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
    managedBy Map<String>
    name String
    The machine name of the MCP that uniquely identifies it within the catalog.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    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.my_konnect_catalog_mcp

    id = “7703e2f2-f9c0-47e3-9146-5fa50486b871”

    }

    The pulumi import command can be used, for example:

    $ pulumi import konnect:index/catalogMcp:CatalogMcp my_konnect_catalog_mcp "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