interface MCPServerConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnAssociation.MCPServerConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnAssociation_MCPServerConfigurationProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnAssociation.MCPServerConfigurationProperty |
Python | aws_cdk.aws_devopsagent.CfnAssociation.MCPServerConfigurationProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnAssociation » MCPServerConfigurationProperty |
MCP server configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
const mCPServerConfigurationProperty: devopsagent.CfnAssociation.MCPServerConfigurationProperty = {
endpoint: 'endpoint',
name: 'name',
tools: ['tools'],
// the properties below are optional
description: 'description',
enableWebhookUpdates: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| 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? | 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
Type:
string
MCP server endpoint URL.
name
Type:
string
The name of the MCP server.
tools
Type:
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.

.NET
Go
Java
Python
TypeScript