interface McpServerDescriptorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AgentRegistry.CfnRegistryRecord.McpServerDescriptorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsagentregistry#CfnRegistryRecord_McpServerDescriptorProperty |
Java | software.amazon.awscdk.services.agentregistry.CfnRegistryRecord.McpServerDescriptorProperty |
Python | aws_cdk.aws_agentregistry.CfnRegistryRecord.McpServerDescriptorProperty |
TypeScript | aws-cdk-lib » aws_agentregistry » CfnRegistryRecord » McpServerDescriptorProperty |
The MCP server descriptor, populated when the record type is MCP.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_agentregistry as agentregistry } from 'aws-cdk-lib';
const mcpServerDescriptorProperty: agentregistry.CfnRegistryRecord.McpServerDescriptorProperty = {
additionalData: {
tools: {
data: 'data',
dataSchemaVersion: 'dataSchemaVersion',
},
},
data: 'data',
dataSchemaVersion: 'dataSchemaVersion',
source: {
fromUrl: {
url: 'url',
// the properties below are optional
credentialProviderConfigurations: [{
credentialProvider: {
iamCredentialProvider: {
region: 'region',
roleArn: 'roleArn',
service: 'service',
},
oauthCredentialProvider: {
providerArn: 'providerArn',
// the properties below are optional
customParameters: {
customParametersKey: 'customParameters',
},
grantType: 'grantType',
scopes: ['scopes'],
},
},
credentialProviderType: 'credentialProviderType',
}],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | IResolvable | Mcp | Additional data associated with an MCP server descriptor. |
| data? | string | Descriptor payload data. |
| data | string | Version of the descriptor type schema. |
| source? | IResolvable | Descriptor | The source configuration that defines where descriptor content is retrieved from. |
additionalData?
Type:
IResolvable | Mcp
(optional)
Additional data associated with an MCP server descriptor.
data?
Type:
string
(optional)
Descriptor payload data.
dataSchemaVersion?
Type:
string
(optional)
Version of the descriptor type schema.
source?
Type:
IResolvable | Descriptor
(optional)
The source configuration that defines where descriptor content is retrieved from.

.NET
Go
Java
Python
TypeScript