1. Packages
  2. Konnect Provider
  3. API Docs
  4. GatewayPluginAiMcpProxy
konnect 3.4.1 published on Wednesday, Oct 29, 2025 by kong

konnect.GatewayPluginAiMcpProxy

Get Started
konnect logo
konnect 3.4.1 published on Wednesday, Oct 29, 2025 by kong

    GatewayPluginAiMcpProxy Resource

    Example Usage

    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.GatewayPluginAiMcpProxy;
    import com.pulumi.konnect.GatewayPluginAiMcpProxyArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiMcpProxyConfigArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiMcpProxyConfigLoggingArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiMcpProxyConfigServerArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiMcpProxyOrderingArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiMcpProxyOrderingAfterArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiMcpProxyOrderingBeforeArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiMcpProxyPartialArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiMcpProxyRouteArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiMcpProxyServiceArgs;
    import static com.pulumi.codegen.internal.Serialization.*;
    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 myGatewaypluginaimcpproxy = new GatewayPluginAiMcpProxy("myGatewaypluginaimcpproxy", GatewayPluginAiMcpProxyArgs.builder()
                .config(GatewayPluginAiMcpProxyConfigArgs.builder()
                    .logging(GatewayPluginAiMcpProxyConfigLoggingArgs.builder()
                        .logPayloads(false)
                        .logStatistics(true)
                        .build())
                    .max_request_body_size(8)
                    .mode("passthrough-listener")
                    .server(GatewayPluginAiMcpProxyConfigServerArgs.builder()
                        .forwardClientHeaders(true)
                        .tag("...my_tag...")
                        .timeout(7.85)
                        .build())
                    .tools(GatewayPluginAiMcpProxyConfigToolArgs.builder()
                        .annotations(GatewayPluginAiMcpProxyConfigToolAnnotationsArgs.builder()
                            .destructiveHint(true)
                            .idempotentHint(false)
                            .openWorldHint(false)
                            .readOnlyHint(false)
                            .title("...my_title...")
                            .build())
                        .description("...my_description...")
                        .headers(Map.of("key", serializeJson(
                            "value")))
                        .host("...my_host...")
                        .method("GET")
                        .parameters(GatewayPluginAiMcpProxyConfigToolParameterArgs.builder()
                            .description("...my_description...")
                            .in("...my_in...")
                            .name("...my_name...")
                            .required(true)
                            .schema(GatewayPluginAiMcpProxyConfigToolParameterSchemaArgs.builder()
                                .type("...my_type...")
                                .build())
                            .build())
                        .path("...my_path...")
                        .query(Map.of("key", serializeJson(
                            "value")))
                        .requestBody("...my_request_body...")
                        .scheme("https")
                        .build())
                    .build())
                .controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
                .createdAt(4)
                .enabled(false)
                .gatewayPluginAiMcpProxyId("...my_id...")
                .instanceName("...my_instance_name...")
                .ordering(GatewayPluginAiMcpProxyOrderingArgs.builder()
                    .after(GatewayPluginAiMcpProxyOrderingAfterArgs.builder()
                        .access("...")
                        .build())
                    .before(GatewayPluginAiMcpProxyOrderingBeforeArgs.builder()
                        .access("...")
                        .build())
                    .build())
                .partials(GatewayPluginAiMcpProxyPartialArgs.builder()
                    .id("...my_id...")
                    .name("...my_name...")
                    .path("...my_path...")
                    .build())
                .protocols("grpc")
                .route(GatewayPluginAiMcpProxyRouteArgs.builder()
                    .id("...my_id...")
                    .build())
                .service(GatewayPluginAiMcpProxyServiceArgs.builder()
                    .id("...my_id...")
                    .build())
                .tags("...")
                .updatedAt(1)
                .build());
    
        }
    }
    
    resources:
      myGatewaypluginaimcpproxy:
        type: konnect:GatewayPluginAiMcpProxy
        properties:
          config:
            logging:
              logPayloads: false
              logStatistics: true
            max_request_body_size: 8
            mode: passthrough-listener
            server:
              forwardClientHeaders: true
              tag: '...my_tag...'
              timeout: 7.85
            tools:
              - annotations:
                  destructiveHint: true
                  idempotentHint: false
                  openWorldHint: false
                  readOnlyHint: false
                  title: '...my_title...'
                description: '...my_description...'
                headers:
                  key:
                    fn::toJSON: value
                host: '...my_host...'
                method: GET
                parameters:
                  - description: '...my_description...'
                    in: '...my_in...'
                    name: '...my_name...'
                    required: true
                    schema:
                      type: '...my_type...'
                path: '...my_path...'
                query:
                  key:
                    fn::toJSON: value
                requestBody: '...my_request_body...'
                scheme: https
          controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
          createdAt: 4
          enabled: false
          gatewayPluginAiMcpProxyId: '...my_id...'
          instanceName: '...my_instance_name...'
          ordering:
            after:
              access:
                - '...'
            before:
              access:
                - '...'
          partials:
            - id: '...my_id...'
              name: '...my_name...'
              path: '...my_path...'
          protocols:
            - grpc
          route:
            id: '...my_id...'
          service:
            id: '...my_id...'
          tags:
            - '...'
          updatedAt: 1
    

    Create GatewayPluginAiMcpProxy Resource

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

    Constructor syntax

    new GatewayPluginAiMcpProxy(name: string, args: GatewayPluginAiMcpProxyArgs, opts?: CustomResourceOptions);
    @overload
    def GatewayPluginAiMcpProxy(resource_name: str,
                                args: GatewayPluginAiMcpProxyArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def GatewayPluginAiMcpProxy(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                config: Optional[GatewayPluginAiMcpProxyConfigArgs] = None,
                                control_plane_id: Optional[str] = None,
                                created_at: Optional[float] = None,
                                enabled: Optional[bool] = None,
                                gateway_plugin_ai_mcp_proxy_id: Optional[str] = None,
                                instance_name: Optional[str] = None,
                                ordering: Optional[GatewayPluginAiMcpProxyOrderingArgs] = None,
                                partials: Optional[Sequence[GatewayPluginAiMcpProxyPartialArgs]] = None,
                                protocols: Optional[Sequence[str]] = None,
                                route: Optional[GatewayPluginAiMcpProxyRouteArgs] = None,
                                service: Optional[GatewayPluginAiMcpProxyServiceArgs] = None,
                                tags: Optional[Sequence[str]] = None,
                                updated_at: Optional[float] = None)
    func NewGatewayPluginAiMcpProxy(ctx *Context, name string, args GatewayPluginAiMcpProxyArgs, opts ...ResourceOption) (*GatewayPluginAiMcpProxy, error)
    public GatewayPluginAiMcpProxy(string name, GatewayPluginAiMcpProxyArgs args, CustomResourceOptions? opts = null)
    public GatewayPluginAiMcpProxy(String name, GatewayPluginAiMcpProxyArgs args)
    public GatewayPluginAiMcpProxy(String name, GatewayPluginAiMcpProxyArgs args, CustomResourceOptions options)
    
    type: konnect:GatewayPluginAiMcpProxy
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args GatewayPluginAiMcpProxyArgs
    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 GatewayPluginAiMcpProxyArgs
    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 GatewayPluginAiMcpProxyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GatewayPluginAiMcpProxyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GatewayPluginAiMcpProxyArgs
    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 gatewayPluginAiMcpProxyResource = new Konnect.GatewayPluginAiMcpProxy("gatewayPluginAiMcpProxyResource", new()
    {
        Config = new Konnect.Inputs.GatewayPluginAiMcpProxyConfigArgs
        {
            Mode = "string",
            Logging = new Konnect.Inputs.GatewayPluginAiMcpProxyConfigLoggingArgs
            {
                LogPayloads = false,
                LogStatistics = false,
            },
            MaxRequestBodySize = 0,
            Server = new Konnect.Inputs.GatewayPluginAiMcpProxyConfigServerArgs
            {
                ForwardClientHeaders = false,
                Tag = "string",
                Timeout = 0,
            },
            Tools = new[]
            {
                new Konnect.Inputs.GatewayPluginAiMcpProxyConfigToolArgs
                {
                    Annotations = new Konnect.Inputs.GatewayPluginAiMcpProxyConfigToolAnnotationsArgs
                    {
                        DestructiveHint = false,
                        IdempotentHint = false,
                        OpenWorldHint = false,
                        ReadOnlyHint = false,
                        Title = "string",
                    },
                    Description = "string",
                    Headers = 
                    {
                        { "string", "string" },
                    },
                    Host = "string",
                    Method = "string",
                    Parameters = new[]
                    {
                        new Konnect.Inputs.GatewayPluginAiMcpProxyConfigToolParameterArgs
                        {
                            Description = "string",
                            In = "string",
                            Name = "string",
                            Required = false,
                            Schema = new Konnect.Inputs.GatewayPluginAiMcpProxyConfigToolParameterSchemaArgs
                            {
                                Type = "string",
                            },
                        },
                    },
                    Path = "string",
                    Query = 
                    {
                        { "string", "string" },
                    },
                    RequestBody = "string",
                    Scheme = "string",
                },
            },
        },
        ControlPlaneId = "string",
        CreatedAt = 0,
        Enabled = false,
        GatewayPluginAiMcpProxyId = "string",
        InstanceName = "string",
        Ordering = new Konnect.Inputs.GatewayPluginAiMcpProxyOrderingArgs
        {
            After = new Konnect.Inputs.GatewayPluginAiMcpProxyOrderingAfterArgs
            {
                Accesses = new[]
                {
                    "string",
                },
            },
            Before = new Konnect.Inputs.GatewayPluginAiMcpProxyOrderingBeforeArgs
            {
                Accesses = new[]
                {
                    "string",
                },
            },
        },
        Partials = new[]
        {
            new Konnect.Inputs.GatewayPluginAiMcpProxyPartialArgs
            {
                Id = "string",
                Name = "string",
                Path = "string",
            },
        },
        Protocols = new[]
        {
            "string",
        },
        Route = new Konnect.Inputs.GatewayPluginAiMcpProxyRouteArgs
        {
            Id = "string",
        },
        Service = new Konnect.Inputs.GatewayPluginAiMcpProxyServiceArgs
        {
            Id = "string",
        },
        Tags = new[]
        {
            "string",
        },
        UpdatedAt = 0,
    });
    
    example, err := konnect.NewGatewayPluginAiMcpProxy(ctx, "gatewayPluginAiMcpProxyResource", &konnect.GatewayPluginAiMcpProxyArgs{
    	Config: &konnect.GatewayPluginAiMcpProxyConfigArgs{
    		Mode: pulumi.String("string"),
    		Logging: &konnect.GatewayPluginAiMcpProxyConfigLoggingArgs{
    			LogPayloads:   pulumi.Bool(false),
    			LogStatistics: pulumi.Bool(false),
    		},
    		MaxRequestBodySize: pulumi.Float64(0),
    		Server: &konnect.GatewayPluginAiMcpProxyConfigServerArgs{
    			ForwardClientHeaders: pulumi.Bool(false),
    			Tag:                  pulumi.String("string"),
    			Timeout:              pulumi.Float64(0),
    		},
    		Tools: konnect.GatewayPluginAiMcpProxyConfigToolArray{
    			&konnect.GatewayPluginAiMcpProxyConfigToolArgs{
    				Annotations: &konnect.GatewayPluginAiMcpProxyConfigToolAnnotationsArgs{
    					DestructiveHint: pulumi.Bool(false),
    					IdempotentHint:  pulumi.Bool(false),
    					OpenWorldHint:   pulumi.Bool(false),
    					ReadOnlyHint:    pulumi.Bool(false),
    					Title:           pulumi.String("string"),
    				},
    				Description: pulumi.String("string"),
    				Headers: pulumi.StringMap{
    					"string": pulumi.String("string"),
    				},
    				Host:   pulumi.String("string"),
    				Method: pulumi.String("string"),
    				Parameters: konnect.GatewayPluginAiMcpProxyConfigToolParameterArray{
    					&konnect.GatewayPluginAiMcpProxyConfigToolParameterArgs{
    						Description: pulumi.String("string"),
    						In:          pulumi.String("string"),
    						Name:        pulumi.String("string"),
    						Required:    pulumi.Bool(false),
    						Schema: &konnect.GatewayPluginAiMcpProxyConfigToolParameterSchemaArgs{
    							Type: pulumi.String("string"),
    						},
    					},
    				},
    				Path: pulumi.String("string"),
    				Query: pulumi.StringMap{
    					"string": pulumi.String("string"),
    				},
    				RequestBody: pulumi.String("string"),
    				Scheme:      pulumi.String("string"),
    			},
    		},
    	},
    	ControlPlaneId:            pulumi.String("string"),
    	CreatedAt:                 pulumi.Float64(0),
    	Enabled:                   pulumi.Bool(false),
    	GatewayPluginAiMcpProxyId: pulumi.String("string"),
    	InstanceName:              pulumi.String("string"),
    	Ordering: &konnect.GatewayPluginAiMcpProxyOrderingArgs{
    		After: &konnect.GatewayPluginAiMcpProxyOrderingAfterArgs{
    			Accesses: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		Before: &konnect.GatewayPluginAiMcpProxyOrderingBeforeArgs{
    			Accesses: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	Partials: konnect.GatewayPluginAiMcpProxyPartialArray{
    		&konnect.GatewayPluginAiMcpProxyPartialArgs{
    			Id:   pulumi.String("string"),
    			Name: pulumi.String("string"),
    			Path: pulumi.String("string"),
    		},
    	},
    	Protocols: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Route: &konnect.GatewayPluginAiMcpProxyRouteArgs{
    		Id: pulumi.String("string"),
    	},
    	Service: &konnect.GatewayPluginAiMcpProxyServiceArgs{
    		Id: pulumi.String("string"),
    	},
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	UpdatedAt: pulumi.Float64(0),
    })
    
    var gatewayPluginAiMcpProxyResource = new GatewayPluginAiMcpProxy("gatewayPluginAiMcpProxyResource", GatewayPluginAiMcpProxyArgs.builder()
        .config(GatewayPluginAiMcpProxyConfigArgs.builder()
            .mode("string")
            .logging(GatewayPluginAiMcpProxyConfigLoggingArgs.builder()
                .logPayloads(false)
                .logStatistics(false)
                .build())
            .maxRequestBodySize(0.0)
            .server(GatewayPluginAiMcpProxyConfigServerArgs.builder()
                .forwardClientHeaders(false)
                .tag("string")
                .timeout(0.0)
                .build())
            .tools(GatewayPluginAiMcpProxyConfigToolArgs.builder()
                .annotations(GatewayPluginAiMcpProxyConfigToolAnnotationsArgs.builder()
                    .destructiveHint(false)
                    .idempotentHint(false)
                    .openWorldHint(false)
                    .readOnlyHint(false)
                    .title("string")
                    .build())
                .description("string")
                .headers(Map.of("string", "string"))
                .host("string")
                .method("string")
                .parameters(GatewayPluginAiMcpProxyConfigToolParameterArgs.builder()
                    .description("string")
                    .in("string")
                    .name("string")
                    .required(false)
                    .schema(GatewayPluginAiMcpProxyConfigToolParameterSchemaArgs.builder()
                        .type("string")
                        .build())
                    .build())
                .path("string")
                .query(Map.of("string", "string"))
                .requestBody("string")
                .scheme("string")
                .build())
            .build())
        .controlPlaneId("string")
        .createdAt(0.0)
        .enabled(false)
        .gatewayPluginAiMcpProxyId("string")
        .instanceName("string")
        .ordering(GatewayPluginAiMcpProxyOrderingArgs.builder()
            .after(GatewayPluginAiMcpProxyOrderingAfterArgs.builder()
                .accesses("string")
                .build())
            .before(GatewayPluginAiMcpProxyOrderingBeforeArgs.builder()
                .accesses("string")
                .build())
            .build())
        .partials(GatewayPluginAiMcpProxyPartialArgs.builder()
            .id("string")
            .name("string")
            .path("string")
            .build())
        .protocols("string")
        .route(GatewayPluginAiMcpProxyRouteArgs.builder()
            .id("string")
            .build())
        .service(GatewayPluginAiMcpProxyServiceArgs.builder()
            .id("string")
            .build())
        .tags("string")
        .updatedAt(0.0)
        .build());
    
    gateway_plugin_ai_mcp_proxy_resource = konnect.GatewayPluginAiMcpProxy("gatewayPluginAiMcpProxyResource",
        config={
            "mode": "string",
            "logging": {
                "log_payloads": False,
                "log_statistics": False,
            },
            "max_request_body_size": 0,
            "server": {
                "forward_client_headers": False,
                "tag": "string",
                "timeout": 0,
            },
            "tools": [{
                "annotations": {
                    "destructive_hint": False,
                    "idempotent_hint": False,
                    "open_world_hint": False,
                    "read_only_hint": False,
                    "title": "string",
                },
                "description": "string",
                "headers": {
                    "string": "string",
                },
                "host": "string",
                "method": "string",
                "parameters": [{
                    "description": "string",
                    "in_": "string",
                    "name": "string",
                    "required": False,
                    "schema": {
                        "type": "string",
                    },
                }],
                "path": "string",
                "query": {
                    "string": "string",
                },
                "request_body": "string",
                "scheme": "string",
            }],
        },
        control_plane_id="string",
        created_at=0,
        enabled=False,
        gateway_plugin_ai_mcp_proxy_id="string",
        instance_name="string",
        ordering={
            "after": {
                "accesses": ["string"],
            },
            "before": {
                "accesses": ["string"],
            },
        },
        partials=[{
            "id": "string",
            "name": "string",
            "path": "string",
        }],
        protocols=["string"],
        route={
            "id": "string",
        },
        service={
            "id": "string",
        },
        tags=["string"],
        updated_at=0)
    
    const gatewayPluginAiMcpProxyResource = new konnect.GatewayPluginAiMcpProxy("gatewayPluginAiMcpProxyResource", {
        config: {
            mode: "string",
            logging: {
                logPayloads: false,
                logStatistics: false,
            },
            maxRequestBodySize: 0,
            server: {
                forwardClientHeaders: false,
                tag: "string",
                timeout: 0,
            },
            tools: [{
                annotations: {
                    destructiveHint: false,
                    idempotentHint: false,
                    openWorldHint: false,
                    readOnlyHint: false,
                    title: "string",
                },
                description: "string",
                headers: {
                    string: "string",
                },
                host: "string",
                method: "string",
                parameters: [{
                    description: "string",
                    "in": "string",
                    name: "string",
                    required: false,
                    schema: {
                        type: "string",
                    },
                }],
                path: "string",
                query: {
                    string: "string",
                },
                requestBody: "string",
                scheme: "string",
            }],
        },
        controlPlaneId: "string",
        createdAt: 0,
        enabled: false,
        gatewayPluginAiMcpProxyId: "string",
        instanceName: "string",
        ordering: {
            after: {
                accesses: ["string"],
            },
            before: {
                accesses: ["string"],
            },
        },
        partials: [{
            id: "string",
            name: "string",
            path: "string",
        }],
        protocols: ["string"],
        route: {
            id: "string",
        },
        service: {
            id: "string",
        },
        tags: ["string"],
        updatedAt: 0,
    });
    
    type: konnect:GatewayPluginAiMcpProxy
    properties:
        config:
            logging:
                logPayloads: false
                logStatistics: false
            maxRequestBodySize: 0
            mode: string
            server:
                forwardClientHeaders: false
                tag: string
                timeout: 0
            tools:
                - annotations:
                    destructiveHint: false
                    idempotentHint: false
                    openWorldHint: false
                    readOnlyHint: false
                    title: string
                  description: string
                  headers:
                    string: string
                  host: string
                  method: string
                  parameters:
                    - description: string
                      in: string
                      name: string
                      required: false
                      schema:
                        type: string
                  path: string
                  query:
                    string: string
                  requestBody: string
                  scheme: string
        controlPlaneId: string
        createdAt: 0
        enabled: false
        gatewayPluginAiMcpProxyId: string
        instanceName: string
        ordering:
            after:
                accesses:
                    - string
            before:
                accesses:
                    - string
        partials:
            - id: string
              name: string
              path: string
        protocols:
            - string
        route:
            id: string
        service:
            id: string
        tags:
            - string
        updatedAt: 0
    

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

    Config GatewayPluginAiMcpProxyConfig
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt double
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied. Default: true
    GatewayPluginAiMcpProxyId string
    A string representing a UUID (universally unique identifier).
    InstanceName string
    A unique string representing a UTF-8 encoded name.
    Ordering GatewayPluginAiMcpProxyOrdering
    Partials List<GatewayPluginAiMcpProxyPartial>
    A list of partials to be used by the plugin.
    Protocols List<string>
    A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
    Route GatewayPluginAiMcpProxyRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginAiMcpProxyService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags List<string>
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt double
    Unix epoch when the resource was last updated.
    Config GatewayPluginAiMcpProxyConfigArgs
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt float64
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied. Default: true
    GatewayPluginAiMcpProxyId string
    A string representing a UUID (universally unique identifier).
    InstanceName string
    A unique string representing a UTF-8 encoded name.
    Ordering GatewayPluginAiMcpProxyOrderingArgs
    Partials []GatewayPluginAiMcpProxyPartialArgs
    A list of partials to be used by the plugin.
    Protocols []string
    A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
    Route GatewayPluginAiMcpProxyRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginAiMcpProxyServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags []string
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt float64
    Unix epoch when the resource was last updated.
    config GatewayPluginAiMcpProxyConfig
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Double
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied. Default: true
    gatewayPluginAiMcpProxyId String
    A string representing a UUID (universally unique identifier).
    instanceName String
    A unique string representing a UTF-8 encoded name.
    ordering GatewayPluginAiMcpProxyOrdering
    partials List<GatewayPluginAiMcpProxyPartial>
    A list of partials to be used by the plugin.
    protocols List<String>
    A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
    route GatewayPluginAiMcpProxyRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginAiMcpProxyService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt Double
    Unix epoch when the resource was last updated.
    config GatewayPluginAiMcpProxyConfig
    controlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt number
    Unix epoch when the resource was created.
    enabled boolean
    Whether the plugin is applied. Default: true
    gatewayPluginAiMcpProxyId string
    A string representing a UUID (universally unique identifier).
    instanceName string
    A unique string representing a UTF-8 encoded name.
    ordering GatewayPluginAiMcpProxyOrdering
    partials GatewayPluginAiMcpProxyPartial[]
    A list of partials to be used by the plugin.
    protocols string[]
    A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
    route GatewayPluginAiMcpProxyRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginAiMcpProxyService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags string[]
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt number
    Unix epoch when the resource was last updated.
    config GatewayPluginAiMcpProxyConfigArgs
    control_plane_id str
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    created_at float
    Unix epoch when the resource was created.
    enabled bool
    Whether the plugin is applied. Default: true
    gateway_plugin_ai_mcp_proxy_id str
    A string representing a UUID (universally unique identifier).
    instance_name str
    A unique string representing a UTF-8 encoded name.
    ordering GatewayPluginAiMcpProxyOrderingArgs
    partials Sequence[GatewayPluginAiMcpProxyPartialArgs]
    A list of partials to be used by the plugin.
    protocols Sequence[str]
    A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
    route GatewayPluginAiMcpProxyRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginAiMcpProxyServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags Sequence[str]
    An optional set of strings associated with the Plugin for grouping and filtering.
    updated_at float
    Unix epoch when the resource was last updated.
    config Property Map
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Number
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied. Default: true
    gatewayPluginAiMcpProxyId String
    A string representing a UUID (universally unique identifier).
    instanceName String
    A unique string representing a UTF-8 encoded name.
    ordering Property Map
    partials List<Property Map>
    A list of partials to be used by the plugin.
    protocols List<String>
    A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
    route Property Map
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service Property Map
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt Number
    Unix epoch when the resource was last updated.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing GatewayPluginAiMcpProxy Resource

    Get an existing GatewayPluginAiMcpProxy 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?: GatewayPluginAiMcpProxyState, opts?: CustomResourceOptions): GatewayPluginAiMcpProxy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            config: Optional[GatewayPluginAiMcpProxyConfigArgs] = None,
            control_plane_id: Optional[str] = None,
            created_at: Optional[float] = None,
            enabled: Optional[bool] = None,
            gateway_plugin_ai_mcp_proxy_id: Optional[str] = None,
            instance_name: Optional[str] = None,
            ordering: Optional[GatewayPluginAiMcpProxyOrderingArgs] = None,
            partials: Optional[Sequence[GatewayPluginAiMcpProxyPartialArgs]] = None,
            protocols: Optional[Sequence[str]] = None,
            route: Optional[GatewayPluginAiMcpProxyRouteArgs] = None,
            service: Optional[GatewayPluginAiMcpProxyServiceArgs] = None,
            tags: Optional[Sequence[str]] = None,
            updated_at: Optional[float] = None) -> GatewayPluginAiMcpProxy
    func GetGatewayPluginAiMcpProxy(ctx *Context, name string, id IDInput, state *GatewayPluginAiMcpProxyState, opts ...ResourceOption) (*GatewayPluginAiMcpProxy, error)
    public static GatewayPluginAiMcpProxy Get(string name, Input<string> id, GatewayPluginAiMcpProxyState? state, CustomResourceOptions? opts = null)
    public static GatewayPluginAiMcpProxy get(String name, Output<String> id, GatewayPluginAiMcpProxyState state, CustomResourceOptions options)
    resources:  _:    type: konnect:GatewayPluginAiMcpProxy    get:      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:
    Config GatewayPluginAiMcpProxyConfig
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt double
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied. Default: true
    GatewayPluginAiMcpProxyId string
    A string representing a UUID (universally unique identifier).
    InstanceName string
    A unique string representing a UTF-8 encoded name.
    Ordering GatewayPluginAiMcpProxyOrdering
    Partials List<GatewayPluginAiMcpProxyPartial>
    A list of partials to be used by the plugin.
    Protocols List<string>
    A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
    Route GatewayPluginAiMcpProxyRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginAiMcpProxyService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags List<string>
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt double
    Unix epoch when the resource was last updated.
    Config GatewayPluginAiMcpProxyConfigArgs
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt float64
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied. Default: true
    GatewayPluginAiMcpProxyId string
    A string representing a UUID (universally unique identifier).
    InstanceName string
    A unique string representing a UTF-8 encoded name.
    Ordering GatewayPluginAiMcpProxyOrderingArgs
    Partials []GatewayPluginAiMcpProxyPartialArgs
    A list of partials to be used by the plugin.
    Protocols []string
    A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
    Route GatewayPluginAiMcpProxyRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginAiMcpProxyServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags []string
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt float64
    Unix epoch when the resource was last updated.
    config GatewayPluginAiMcpProxyConfig
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Double
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied. Default: true
    gatewayPluginAiMcpProxyId String
    A string representing a UUID (universally unique identifier).
    instanceName String
    A unique string representing a UTF-8 encoded name.
    ordering GatewayPluginAiMcpProxyOrdering
    partials List<GatewayPluginAiMcpProxyPartial>
    A list of partials to be used by the plugin.
    protocols List<String>
    A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
    route GatewayPluginAiMcpProxyRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginAiMcpProxyService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt Double
    Unix epoch when the resource was last updated.
    config GatewayPluginAiMcpProxyConfig
    controlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt number
    Unix epoch when the resource was created.
    enabled boolean
    Whether the plugin is applied. Default: true
    gatewayPluginAiMcpProxyId string
    A string representing a UUID (universally unique identifier).
    instanceName string
    A unique string representing a UTF-8 encoded name.
    ordering GatewayPluginAiMcpProxyOrdering
    partials GatewayPluginAiMcpProxyPartial[]
    A list of partials to be used by the plugin.
    protocols string[]
    A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
    route GatewayPluginAiMcpProxyRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginAiMcpProxyService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags string[]
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt number
    Unix epoch when the resource was last updated.
    config GatewayPluginAiMcpProxyConfigArgs
    control_plane_id str
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    created_at float
    Unix epoch when the resource was created.
    enabled bool
    Whether the plugin is applied. Default: true
    gateway_plugin_ai_mcp_proxy_id str
    A string representing a UUID (universally unique identifier).
    instance_name str
    A unique string representing a UTF-8 encoded name.
    ordering GatewayPluginAiMcpProxyOrderingArgs
    partials Sequence[GatewayPluginAiMcpProxyPartialArgs]
    A list of partials to be used by the plugin.
    protocols Sequence[str]
    A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
    route GatewayPluginAiMcpProxyRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginAiMcpProxyServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags Sequence[str]
    An optional set of strings associated with the Plugin for grouping and filtering.
    updated_at float
    Unix epoch when the resource was last updated.
    config Property Map
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Number
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied. Default: true
    gatewayPluginAiMcpProxyId String
    A string representing a UUID (universally unique identifier).
    instanceName String
    A unique string representing a UTF-8 encoded name.
    ordering Property Map
    partials List<Property Map>
    A list of partials to be used by the plugin.
    protocols List<String>
    A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
    route Property Map
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service Property Map
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt Number
    Unix epoch when the resource was last updated.

    Supporting Types

    GatewayPluginAiMcpProxyConfig, GatewayPluginAiMcpProxyConfigArgs

    Mode string
    The mode of the MCP proxy. Possible values are: 'passthrough-listener', 'conversion-listener', 'conversion-only', 'listener'. must be one of ["conversion-listener", "conversion-only", "listener", "passthrough-listener"]
    Logging GatewayPluginAiMcpProxyConfigLogging
    MaxRequestBodySize double
    max allowed body size allowed to be handled as MCP request. Default: 8192
    Server GatewayPluginAiMcpProxyConfigServer
    Tools List<GatewayPluginAiMcpProxyConfigTool>
    Mode string
    The mode of the MCP proxy. Possible values are: 'passthrough-listener', 'conversion-listener', 'conversion-only', 'listener'. must be one of ["conversion-listener", "conversion-only", "listener", "passthrough-listener"]
    Logging GatewayPluginAiMcpProxyConfigLogging
    MaxRequestBodySize float64
    max allowed body size allowed to be handled as MCP request. Default: 8192
    Server GatewayPluginAiMcpProxyConfigServer
    Tools []GatewayPluginAiMcpProxyConfigTool
    mode String
    The mode of the MCP proxy. Possible values are: 'passthrough-listener', 'conversion-listener', 'conversion-only', 'listener'. must be one of ["conversion-listener", "conversion-only", "listener", "passthrough-listener"]
    logging GatewayPluginAiMcpProxyConfigLogging
    maxRequestBodySize Double
    max allowed body size allowed to be handled as MCP request. Default: 8192
    server GatewayPluginAiMcpProxyConfigServer
    tools List<GatewayPluginAiMcpProxyConfigTool>
    mode string
    The mode of the MCP proxy. Possible values are: 'passthrough-listener', 'conversion-listener', 'conversion-only', 'listener'. must be one of ["conversion-listener", "conversion-only", "listener", "passthrough-listener"]
    logging GatewayPluginAiMcpProxyConfigLogging
    maxRequestBodySize number
    max allowed body size allowed to be handled as MCP request. Default: 8192
    server GatewayPluginAiMcpProxyConfigServer
    tools GatewayPluginAiMcpProxyConfigTool[]
    mode str
    The mode of the MCP proxy. Possible values are: 'passthrough-listener', 'conversion-listener', 'conversion-only', 'listener'. must be one of ["conversion-listener", "conversion-only", "listener", "passthrough-listener"]
    logging GatewayPluginAiMcpProxyConfigLogging
    max_request_body_size float
    max allowed body size allowed to be handled as MCP request. Default: 8192
    server GatewayPluginAiMcpProxyConfigServer
    tools Sequence[GatewayPluginAiMcpProxyConfigTool]
    mode String
    The mode of the MCP proxy. Possible values are: 'passthrough-listener', 'conversion-listener', 'conversion-only', 'listener'. must be one of ["conversion-listener", "conversion-only", "listener", "passthrough-listener"]
    logging Property Map
    maxRequestBodySize Number
    max allowed body size allowed to be handled as MCP request. Default: 8192
    server Property Map
    tools List<Property Map>

    GatewayPluginAiMcpProxyConfigLogging, GatewayPluginAiMcpProxyConfigLoggingArgs

    LogPayloads bool
    If enabled, will log the request and response body into the Kong log plugin(s) output. Default: false
    LogStatistics bool
    If enabled, will add mcp metrics into the Kong log plugin(s) output. Default: false
    LogPayloads bool
    If enabled, will log the request and response body into the Kong log plugin(s) output. Default: false
    LogStatistics bool
    If enabled, will add mcp metrics into the Kong log plugin(s) output. Default: false
    logPayloads Boolean
    If enabled, will log the request and response body into the Kong log plugin(s) output. Default: false
    logStatistics Boolean
    If enabled, will add mcp metrics into the Kong log plugin(s) output. Default: false
    logPayloads boolean
    If enabled, will log the request and response body into the Kong log plugin(s) output. Default: false
    logStatistics boolean
    If enabled, will add mcp metrics into the Kong log plugin(s) output. Default: false
    log_payloads bool
    If enabled, will log the request and response body into the Kong log plugin(s) output. Default: false
    log_statistics bool
    If enabled, will add mcp metrics into the Kong log plugin(s) output. Default: false
    logPayloads Boolean
    If enabled, will log the request and response body into the Kong log plugin(s) output. Default: false
    logStatistics Boolean
    If enabled, will add mcp metrics into the Kong log plugin(s) output. Default: false

    GatewayPluginAiMcpProxyConfigServer, GatewayPluginAiMcpProxyConfigServerArgs

    ForwardClientHeaders bool
    Whether to forward the client request headers to the upstream server when calling the tools. Default: true
    Tag string
    The tag of the MCP server. This is used to filter the exported MCP tools. The field should contain exactly one tag.
    Timeout double
    The timeout for calling the tools in milliseconds. Default: 10000
    ForwardClientHeaders bool
    Whether to forward the client request headers to the upstream server when calling the tools. Default: true
    Tag string
    The tag of the MCP server. This is used to filter the exported MCP tools. The field should contain exactly one tag.
    Timeout float64
    The timeout for calling the tools in milliseconds. Default: 10000
    forwardClientHeaders Boolean
    Whether to forward the client request headers to the upstream server when calling the tools. Default: true
    tag String
    The tag of the MCP server. This is used to filter the exported MCP tools. The field should contain exactly one tag.
    timeout Double
    The timeout for calling the tools in milliseconds. Default: 10000
    forwardClientHeaders boolean
    Whether to forward the client request headers to the upstream server when calling the tools. Default: true
    tag string
    The tag of the MCP server. This is used to filter the exported MCP tools. The field should contain exactly one tag.
    timeout number
    The timeout for calling the tools in milliseconds. Default: 10000
    forward_client_headers bool
    Whether to forward the client request headers to the upstream server when calling the tools. Default: true
    tag str
    The tag of the MCP server. This is used to filter the exported MCP tools. The field should contain exactly one tag.
    timeout float
    The timeout for calling the tools in milliseconds. Default: 10000
    forwardClientHeaders Boolean
    Whether to forward the client request headers to the upstream server when calling the tools. Default: true
    tag String
    The tag of the MCP server. This is used to filter the exported MCP tools. The field should contain exactly one tag.
    timeout Number
    The timeout for calling the tools in milliseconds. Default: 10000

    GatewayPluginAiMcpProxyConfigTool, GatewayPluginAiMcpProxyConfigToolArgs

    Annotations GatewayPluginAiMcpProxyConfigToolAnnotations
    Description string
    The description of the MCP tool. This is used to provide information about the tool's functionality and usage. Not Null
    Headers Dictionary<string, string>
    The headers of the exported API. By default, Kong will extract the headers from API configuration. If the configured headers are not exactly matched, this field is required.
    Host string
    The host of the exported API. By default, Kong will extract the host from API configuration. If the configured host is wildcard, this field is required.
    Method string
    The method of the exported API. By default, Kong will extract the method from API configuration. If the configured method is not exactly matched, this field is required. must be one of ["DELETE", "GET", "PATCH", "POST", "PUT"]
    Parameters List<GatewayPluginAiMcpProxyConfigToolParameter>
    The API parameters specification defined in OpenAPI. For example, '[{"name": "city", "in": "query", "description": "Name of the city to get the weather for", "required": true, "schema": {"type": "string"}}]'.See https://swagger.io/docs/specification/v3_0/describing-parameters/ for more details.
    Path string
    The path of the exported API. By default, Kong will extract the path from API configuration. If the configured path is not exactly matched, this field is required. Paths not starting with '/' are treated as relative paths.
    Query Dictionary<string, string>
    The query arguments of the exported API. If the generated query arguments are not exactly matched, this field is required.
    RequestBody string
    The API requestBody specification defined in OpenAPI. For example, '{"content":{"application/x-www-form-urlencoded":{"schema":{"type":"object","properties":{"color":{"type":"array","items":{"type":"string"}}}}}}'.See https://swagger.io/docs/specification/v3_0/describing-request-body/describing-request-body/ for more details.
    Scheme string
    The scheme of the exported API. By default, Kong will extract the scheme from API configuration. If the configured scheme is not expected, this field can be used to override it. must be one of ["http", "https"]
    Annotations GatewayPluginAiMcpProxyConfigToolAnnotations
    Description string
    The description of the MCP tool. This is used to provide information about the tool's functionality and usage. Not Null
    Headers map[string]string
    The headers of the exported API. By default, Kong will extract the headers from API configuration. If the configured headers are not exactly matched, this field is required.
    Host string
    The host of the exported API. By default, Kong will extract the host from API configuration. If the configured host is wildcard, this field is required.
    Method string
    The method of the exported API. By default, Kong will extract the method from API configuration. If the configured method is not exactly matched, this field is required. must be one of ["DELETE", "GET", "PATCH", "POST", "PUT"]
    Parameters []GatewayPluginAiMcpProxyConfigToolParameter
    The API parameters specification defined in OpenAPI. For example, '[{"name": "city", "in": "query", "description": "Name of the city to get the weather for", "required": true, "schema": {"type": "string"}}]'.See https://swagger.io/docs/specification/v3_0/describing-parameters/ for more details.
    Path string
    The path of the exported API. By default, Kong will extract the path from API configuration. If the configured path is not exactly matched, this field is required. Paths not starting with '/' are treated as relative paths.
    Query map[string]string
    The query arguments of the exported API. If the generated query arguments are not exactly matched, this field is required.
    RequestBody string
    The API requestBody specification defined in OpenAPI. For example, '{"content":{"application/x-www-form-urlencoded":{"schema":{"type":"object","properties":{"color":{"type":"array","items":{"type":"string"}}}}}}'.See https://swagger.io/docs/specification/v3_0/describing-request-body/describing-request-body/ for more details.
    Scheme string
    The scheme of the exported API. By default, Kong will extract the scheme from API configuration. If the configured scheme is not expected, this field can be used to override it. must be one of ["http", "https"]
    annotations GatewayPluginAiMcpProxyConfigToolAnnotations
    description String
    The description of the MCP tool. This is used to provide information about the tool's functionality and usage. Not Null
    headers Map<String,String>
    The headers of the exported API. By default, Kong will extract the headers from API configuration. If the configured headers are not exactly matched, this field is required.
    host String
    The host of the exported API. By default, Kong will extract the host from API configuration. If the configured host is wildcard, this field is required.
    method String
    The method of the exported API. By default, Kong will extract the method from API configuration. If the configured method is not exactly matched, this field is required. must be one of ["DELETE", "GET", "PATCH", "POST", "PUT"]
    parameters List<GatewayPluginAiMcpProxyConfigToolParameter>
    The API parameters specification defined in OpenAPI. For example, '[{"name": "city", "in": "query", "description": "Name of the city to get the weather for", "required": true, "schema": {"type": "string"}}]'.See https://swagger.io/docs/specification/v3_0/describing-parameters/ for more details.
    path String
    The path of the exported API. By default, Kong will extract the path from API configuration. If the configured path is not exactly matched, this field is required. Paths not starting with '/' are treated as relative paths.
    query Map<String,String>
    The query arguments of the exported API. If the generated query arguments are not exactly matched, this field is required.
    requestBody String
    The API requestBody specification defined in OpenAPI. For example, '{"content":{"application/x-www-form-urlencoded":{"schema":{"type":"object","properties":{"color":{"type":"array","items":{"type":"string"}}}}}}'.See https://swagger.io/docs/specification/v3_0/describing-request-body/describing-request-body/ for more details.
    scheme String
    The scheme of the exported API. By default, Kong will extract the scheme from API configuration. If the configured scheme is not expected, this field can be used to override it. must be one of ["http", "https"]
    annotations GatewayPluginAiMcpProxyConfigToolAnnotations
    description string
    The description of the MCP tool. This is used to provide information about the tool's functionality and usage. Not Null
    headers {[key: string]: string}
    The headers of the exported API. By default, Kong will extract the headers from API configuration. If the configured headers are not exactly matched, this field is required.
    host string
    The host of the exported API. By default, Kong will extract the host from API configuration. If the configured host is wildcard, this field is required.
    method string
    The method of the exported API. By default, Kong will extract the method from API configuration. If the configured method is not exactly matched, this field is required. must be one of ["DELETE", "GET", "PATCH", "POST", "PUT"]
    parameters GatewayPluginAiMcpProxyConfigToolParameter[]
    The API parameters specification defined in OpenAPI. For example, '[{"name": "city", "in": "query", "description": "Name of the city to get the weather for", "required": true, "schema": {"type": "string"}}]'.See https://swagger.io/docs/specification/v3_0/describing-parameters/ for more details.
    path string
    The path of the exported API. By default, Kong will extract the path from API configuration. If the configured path is not exactly matched, this field is required. Paths not starting with '/' are treated as relative paths.
    query {[key: string]: string}
    The query arguments of the exported API. If the generated query arguments are not exactly matched, this field is required.
    requestBody string
    The API requestBody specification defined in OpenAPI. For example, '{"content":{"application/x-www-form-urlencoded":{"schema":{"type":"object","properties":{"color":{"type":"array","items":{"type":"string"}}}}}}'.See https://swagger.io/docs/specification/v3_0/describing-request-body/describing-request-body/ for more details.
    scheme string
    The scheme of the exported API. By default, Kong will extract the scheme from API configuration. If the configured scheme is not expected, this field can be used to override it. must be one of ["http", "https"]
    annotations GatewayPluginAiMcpProxyConfigToolAnnotations
    description str
    The description of the MCP tool. This is used to provide information about the tool's functionality and usage. Not Null
    headers Mapping[str, str]
    The headers of the exported API. By default, Kong will extract the headers from API configuration. If the configured headers are not exactly matched, this field is required.
    host str
    The host of the exported API. By default, Kong will extract the host from API configuration. If the configured host is wildcard, this field is required.
    method str
    The method of the exported API. By default, Kong will extract the method from API configuration. If the configured method is not exactly matched, this field is required. must be one of ["DELETE", "GET", "PATCH", "POST", "PUT"]
    parameters Sequence[GatewayPluginAiMcpProxyConfigToolParameter]
    The API parameters specification defined in OpenAPI. For example, '[{"name": "city", "in": "query", "description": "Name of the city to get the weather for", "required": true, "schema": {"type": "string"}}]'.See https://swagger.io/docs/specification/v3_0/describing-parameters/ for more details.
    path str
    The path of the exported API. By default, Kong will extract the path from API configuration. If the configured path is not exactly matched, this field is required. Paths not starting with '/' are treated as relative paths.
    query Mapping[str, str]
    The query arguments of the exported API. If the generated query arguments are not exactly matched, this field is required.
    request_body str
    The API requestBody specification defined in OpenAPI. For example, '{"content":{"application/x-www-form-urlencoded":{"schema":{"type":"object","properties":{"color":{"type":"array","items":{"type":"string"}}}}}}'.See https://swagger.io/docs/specification/v3_0/describing-request-body/describing-request-body/ for more details.
    scheme str
    The scheme of the exported API. By default, Kong will extract the scheme from API configuration. If the configured scheme is not expected, this field can be used to override it. must be one of ["http", "https"]
    annotations Property Map
    description String
    The description of the MCP tool. This is used to provide information about the tool's functionality and usage. Not Null
    headers Map<String>
    The headers of the exported API. By default, Kong will extract the headers from API configuration. If the configured headers are not exactly matched, this field is required.
    host String
    The host of the exported API. By default, Kong will extract the host from API configuration. If the configured host is wildcard, this field is required.
    method String
    The method of the exported API. By default, Kong will extract the method from API configuration. If the configured method is not exactly matched, this field is required. must be one of ["DELETE", "GET", "PATCH", "POST", "PUT"]
    parameters List<Property Map>
    The API parameters specification defined in OpenAPI. For example, '[{"name": "city", "in": "query", "description": "Name of the city to get the weather for", "required": true, "schema": {"type": "string"}}]'.See https://swagger.io/docs/specification/v3_0/describing-parameters/ for more details.
    path String
    The path of the exported API. By default, Kong will extract the path from API configuration. If the configured path is not exactly matched, this field is required. Paths not starting with '/' are treated as relative paths.
    query Map<String>
    The query arguments of the exported API. If the generated query arguments are not exactly matched, this field is required.
    requestBody String
    The API requestBody specification defined in OpenAPI. For example, '{"content":{"application/x-www-form-urlencoded":{"schema":{"type":"object","properties":{"color":{"type":"array","items":{"type":"string"}}}}}}'.See https://swagger.io/docs/specification/v3_0/describing-request-body/describing-request-body/ for more details.
    scheme String
    The scheme of the exported API. By default, Kong will extract the scheme from API configuration. If the configured scheme is not expected, this field can be used to override it. must be one of ["http", "https"]

    GatewayPluginAiMcpProxyConfigToolAnnotations, GatewayPluginAiMcpProxyConfigToolAnnotationsArgs

    DestructiveHint bool
    If true, the tool may perform destructive updates
    IdempotentHint bool
    If true, repeated calls with same args have no additional effect
    OpenWorldHint bool
    If true, tool interacts with external entities
    ReadOnlyHint bool
    If true, the tool does not modify its environment
    Title string
    Human-readable title for the tool
    DestructiveHint bool
    If true, the tool may perform destructive updates
    IdempotentHint bool
    If true, repeated calls with same args have no additional effect
    OpenWorldHint bool
    If true, tool interacts with external entities
    ReadOnlyHint bool
    If true, the tool does not modify its environment
    Title string
    Human-readable title for the tool
    destructiveHint Boolean
    If true, the tool may perform destructive updates
    idempotentHint Boolean
    If true, repeated calls with same args have no additional effect
    openWorldHint Boolean
    If true, tool interacts with external entities
    readOnlyHint Boolean
    If true, the tool does not modify its environment
    title String
    Human-readable title for the tool
    destructiveHint boolean
    If true, the tool may perform destructive updates
    idempotentHint boolean
    If true, repeated calls with same args have no additional effect
    openWorldHint boolean
    If true, tool interacts with external entities
    readOnlyHint boolean
    If true, the tool does not modify its environment
    title string
    Human-readable title for the tool
    destructive_hint bool
    If true, the tool may perform destructive updates
    idempotent_hint bool
    If true, repeated calls with same args have no additional effect
    open_world_hint bool
    If true, tool interacts with external entities
    read_only_hint bool
    If true, the tool does not modify its environment
    title str
    Human-readable title for the tool
    destructiveHint Boolean
    If true, the tool may perform destructive updates
    idempotentHint Boolean
    If true, repeated calls with same args have no additional effect
    openWorldHint Boolean
    If true, tool interacts with external entities
    readOnlyHint Boolean
    If true, the tool does not modify its environment
    title String
    Human-readable title for the tool

    GatewayPluginAiMcpProxyConfigToolParameter, GatewayPluginAiMcpProxyConfigToolParameterArgs

    description String
    in String
    name String
    required Boolean
    schema Property Map

    GatewayPluginAiMcpProxyConfigToolParameterSchema, GatewayPluginAiMcpProxyConfigToolParameterSchemaArgs

    Type string
    Type string
    type String
    type string
    type str
    type String

    GatewayPluginAiMcpProxyOrdering, GatewayPluginAiMcpProxyOrderingArgs

    GatewayPluginAiMcpProxyOrderingAfter, GatewayPluginAiMcpProxyOrderingAfterArgs

    Accesses List<string>
    Accesses []string
    accesses List<String>
    accesses string[]
    accesses Sequence[str]
    accesses List<String>

    GatewayPluginAiMcpProxyOrderingBefore, GatewayPluginAiMcpProxyOrderingBeforeArgs

    Accesses List<string>
    Accesses []string
    accesses List<String>
    accesses string[]
    accesses Sequence[str]
    accesses List<String>

    GatewayPluginAiMcpProxyPartial, GatewayPluginAiMcpProxyPartialArgs

    Id string
    A string representing a UUID (universally unique identifier).
    Name string
    A unique string representing a UTF-8 encoded name.
    Path string
    Id string
    A string representing a UUID (universally unique identifier).
    Name string
    A unique string representing a UTF-8 encoded name.
    Path string
    id String
    A string representing a UUID (universally unique identifier).
    name String
    A unique string representing a UTF-8 encoded name.
    path String
    id string
    A string representing a UUID (universally unique identifier).
    name string
    A unique string representing a UTF-8 encoded name.
    path string
    id str
    A string representing a UUID (universally unique identifier).
    name str
    A unique string representing a UTF-8 encoded name.
    path str
    id String
    A string representing a UUID (universally unique identifier).
    name String
    A unique string representing a UTF-8 encoded name.
    path String

    GatewayPluginAiMcpProxyRoute, GatewayPluginAiMcpProxyRouteArgs

    Id string
    Id string
    id String
    id string
    id str
    id String

    GatewayPluginAiMcpProxyService, GatewayPluginAiMcpProxyServiceArgs

    Id string
    Id string
    id String
    id string
    id str
    id String

    Import

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

    terraform

    import {

    to = konnect_gateway_plugin_ai_mcp_proxy.my_konnect_gateway_plugin_ai_mcp_proxy

    id = jsonencode({

    control_plane_id = "9524ec7d-36d9-465d-a8c5-83a3c9390458"
    
    id = "3473c251-5b6c-4f45-b1ff-7ede735a366d"
    

    })

    }

    The pulumi import command can be used, for example:

    $ pulumi import konnect:index/gatewayPluginAiMcpProxy:GatewayPluginAiMcpProxy my_konnect_gateway_plugin_ai_mcp_proxy '{"control_plane_id": "9524ec7d-36d9-465d-a8c5-83a3c9390458", "id": "3473c251-5b6c-4f45-b1ff-7ede735a366d"}'
    

    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.
    konnect logo
    konnect 3.4.1 published on Wednesday, Oct 29, 2025 by kong
      Meet Neo: Your AI Platform Teammate