interface MCPServerConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsAgent.Mixins.CfnAssociationPropsMixin.MCPServerConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsagent/mixins#CfnAssociationPropsMixin_MCPServerConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.devopsagent.mixins.CfnAssociationPropsMixin.MCPServerConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_devopsagent.mixins.CfnAssociationPropsMixin.MCPServerConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_devopsagent » mixins » CfnAssociationPropsMixin » MCPServerConfigurationProperty |
Configuration for MCP (Model Context Protocol) server integration.
Defines the server name, endpoint URL, available tools, optional description, and webhook update settings for custom MCP servers.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as devopsagent_mixins } from '@aws-cdk/mixins-preview/aws-devopsagent';
const mCPServerConfigurationProperty: devopsagent_mixins.CfnAssociationPropsMixin.MCPServerConfigurationProperty = {
description: 'description',
enableWebhookUpdates: false,
endpoint: 'endpoint',
name: 'name',
tools: ['tools'],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the MCP server. |
| enable | boolean | IResolvable | When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service. |
| endpoint? | string | MCP server endpoint URL. |
| name? | string | The name of the MCP server. |
| tools? | string[] | List of MCP tools that can be used with the association. |
description?
Type:
string
(optional)
The description of the MCP server.
enableWebhookUpdates?
Type:
boolean | IResolvable
(optional)
When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.
endpoint?
Type:
string
(optional)
MCP server endpoint URL.
name?
Type:
string
(optional)
The name of the MCP server.
tools?
Type:
string[]
(optional)
List of MCP tools that can be used with the association.

.NET
Go
Java
Python
TypeScript