Interface CfnAssociation.IMCPServerConfigurationProperty
Configuration for MCP (Model Context Protocol) server integration.
Namespace: Amazon.CDK.AWS.DevOpsAgent
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAssociation.IMCPServerConfigurationProperty
Syntax (vb)
Public Interface CfnAssociation.IMCPServerConfigurationProperty
Remarks
Defines the server name, endpoint URL, available tools, optional description, and webhook update settings for custom MCP servers.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DevOpsAgent;
var mCPServerConfigurationProperty = new MCPServerConfigurationProperty {
Endpoint = "endpoint",
Name = "name",
Tools = new [] { "tools" },
// the properties below are optional
Description = "description",
EnableWebhookUpdates = false
};
Synopsis
Properties
| Description | The description of the MCP server. |
| EnableWebhookUpdates | When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service. |
| Endpoint | MCP server endpoint URL. |
| Name | The name of the MCP server. |
| Tools | List of MCP tools that can be used with the association. |
Properties
Description
The description of the MCP server.
string? Description { get; }
Property Value
Remarks
EnableWebhookUpdates
When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.
object? EnableWebhookUpdates { get; }
Property Value
Remarks
Endpoint
MCP server endpoint URL.
string Endpoint { get; }
Property Value
Remarks
Name
The name of the MCP server.
string Name { get; }
Property Value
Remarks
Tools
List of MCP tools that can be used with the association.
string[] Tools { get; }
Property Value
string[]