1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. DatabaseTools
  6. getDatabaseToolsMcpServers
Viewing docs for Oracle Cloud Infrastructure v4.12.0
published on Thursday, May 21, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.12.0
published on Thursday, May 21, 2026 by Pulumi

    This data source provides the list of Database Tools Mcp Servers in Oracle Cloud Infrastructure Database Tools service.

    Returns a list of Database Tools MCP servers.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDatabaseToolsMcpServers = oci.databasetools.getDatabaseToolsMcpServers({
        compartmentId: compartmentId,
        databaseToolsConnectionId: testDatabaseToolsConnection.id,
        displayName: databaseToolsMcpServerDisplayName,
        relatedResourceIdentifier: databaseToolsMcpServerRelatedResourceIdentifier,
        state: databaseToolsMcpServerState,
        types: databaseToolsMcpServerType,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_database_tools_mcp_servers = oci.databasetools.get_database_tools_mcp_servers(compartment_id=compartment_id,
        database_tools_connection_id=test_database_tools_connection["id"],
        display_name=database_tools_mcp_server_display_name,
        related_resource_identifier=database_tools_mcp_server_related_resource_identifier,
        state=database_tools_mcp_server_state,
        types=database_tools_mcp_server_type)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/databasetools"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databasetools.GetDatabaseToolsMcpServers(ctx, &databasetools.GetDatabaseToolsMcpServersArgs{
    			CompartmentId:             compartmentId,
    			DatabaseToolsConnectionId: pulumi.StringRef(testDatabaseToolsConnection.Id),
    			DisplayName:               pulumi.StringRef(databaseToolsMcpServerDisplayName),
    			RelatedResourceIdentifier: pulumi.StringRef(databaseToolsMcpServerRelatedResourceIdentifier),
    			State:                     pulumi.StringRef(databaseToolsMcpServerState),
    			Types:                     pulumi.ToArray(databaseToolsMcpServerType),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testDatabaseToolsMcpServers = Oci.DatabaseTools.GetDatabaseToolsMcpServers.Invoke(new()
        {
            CompartmentId = compartmentId,
            DatabaseToolsConnectionId = testDatabaseToolsConnection.Id,
            DisplayName = databaseToolsMcpServerDisplayName,
            RelatedResourceIdentifier = databaseToolsMcpServerRelatedResourceIdentifier,
            State = databaseToolsMcpServerState,
            Types = databaseToolsMcpServerType,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseTools.DatabaseToolsFunctions;
    import com.pulumi.oci.DatabaseTools.inputs.GetDatabaseToolsMcpServersArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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) {
            final var testDatabaseToolsMcpServers = DatabaseToolsFunctions.getDatabaseToolsMcpServers(GetDatabaseToolsMcpServersArgs.builder()
                .compartmentId(compartmentId)
                .databaseToolsConnectionId(testDatabaseToolsConnection.id())
                .displayName(databaseToolsMcpServerDisplayName)
                .relatedResourceIdentifier(databaseToolsMcpServerRelatedResourceIdentifier)
                .state(databaseToolsMcpServerState)
                .types(databaseToolsMcpServerType)
                .build());
    
        }
    }
    
    variables:
      testDatabaseToolsMcpServers:
        fn::invoke:
          function: oci:DatabaseTools:getDatabaseToolsMcpServers
          arguments:
            compartmentId: ${compartmentId}
            databaseToolsConnectionId: ${testDatabaseToolsConnection.id}
            displayName: ${databaseToolsMcpServerDisplayName}
            relatedResourceIdentifier: ${databaseToolsMcpServerRelatedResourceIdentifier}
            state: ${databaseToolsMcpServerState}
            types: ${databaseToolsMcpServerType}
    
    Example coming soon!
    

    Using getDatabaseToolsMcpServers

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getDatabaseToolsMcpServers(args: GetDatabaseToolsMcpServersArgs, opts?: InvokeOptions): Promise<GetDatabaseToolsMcpServersResult>
    function getDatabaseToolsMcpServersOutput(args: GetDatabaseToolsMcpServersOutputArgs, opts?: InvokeOptions): Output<GetDatabaseToolsMcpServersResult>
    def get_database_tools_mcp_servers(compartment_id: Optional[str] = None,
                                       database_tools_connection_id: Optional[str] = None,
                                       display_name: Optional[str] = None,
                                       filters: Optional[Sequence[GetDatabaseToolsMcpServersFilter]] = None,
                                       related_resource_identifier: Optional[str] = None,
                                       state: Optional[str] = None,
                                       types: Optional[Sequence[str]] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetDatabaseToolsMcpServersResult
    def get_database_tools_mcp_servers_output(compartment_id: pulumi.Input[Optional[str]] = None,
                                       database_tools_connection_id: pulumi.Input[Optional[str]] = None,
                                       display_name: pulumi.Input[Optional[str]] = None,
                                       filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetDatabaseToolsMcpServersFilterArgs]]]] = None,
                                       related_resource_identifier: pulumi.Input[Optional[str]] = None,
                                       state: pulumi.Input[Optional[str]] = None,
                                       types: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetDatabaseToolsMcpServersResult]
    func GetDatabaseToolsMcpServers(ctx *Context, args *GetDatabaseToolsMcpServersArgs, opts ...InvokeOption) (*GetDatabaseToolsMcpServersResult, error)
    func GetDatabaseToolsMcpServersOutput(ctx *Context, args *GetDatabaseToolsMcpServersOutputArgs, opts ...InvokeOption) GetDatabaseToolsMcpServersResultOutput

    > Note: This function is named GetDatabaseToolsMcpServers in the Go SDK.

    public static class GetDatabaseToolsMcpServers 
    {
        public static Task<GetDatabaseToolsMcpServersResult> InvokeAsync(GetDatabaseToolsMcpServersArgs args, InvokeOptions? opts = null)
        public static Output<GetDatabaseToolsMcpServersResult> Invoke(GetDatabaseToolsMcpServersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDatabaseToolsMcpServersResult> getDatabaseToolsMcpServers(GetDatabaseToolsMcpServersArgs args, InvokeOptions options)
    public static Output<GetDatabaseToolsMcpServersResult> getDatabaseToolsMcpServers(GetDatabaseToolsMcpServersArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DatabaseTools/getDatabaseToolsMcpServers:getDatabaseToolsMcpServers
      arguments:
        # arguments dictionary
    data "oci_databasetools_getdatabasetoolsmcpservers" "name" {
        # arguments
    }

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DatabaseToolsConnectionId string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    Filters List<GetDatabaseToolsMcpServersFilter>
    RelatedResourceIdentifier string
    The OCID of the related resource.
    State string
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    Types List<string>
    A filter to return only resources with one of the specified type values.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DatabaseToolsConnectionId string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    Filters []GetDatabaseToolsMcpServersFilter
    RelatedResourceIdentifier string
    The OCID of the related resource.
    State string
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    Types []string
    A filter to return only resources with one of the specified type values.
    compartment_id string
    The OCID of the compartment in which to list resources.
    database_tools_connection_id string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    display_name string
    A filter to return only resources that match the entire specified display name.
    filters list(object)
    related_resource_identifier string
    The OCID of the related resource.
    state string
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    types list(string)
    A filter to return only resources with one of the specified type values.
    compartmentId String
    The OCID of the compartment in which to list resources.
    databaseToolsConnectionId String
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    displayName String
    A filter to return only resources that match the entire specified display name.
    filters List<GetMcpServersFilter>
    relatedResourceIdentifier String
    The OCID of the related resource.
    state String
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    types List<String>
    A filter to return only resources with one of the specified type values.
    compartmentId string
    The OCID of the compartment in which to list resources.
    databaseToolsConnectionId string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    displayName string
    A filter to return only resources that match the entire specified display name.
    filters GetDatabaseToolsMcpServersFilter[]
    relatedResourceIdentifier string
    The OCID of the related resource.
    state string
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    types string[]
    A filter to return only resources with one of the specified type values.
    compartment_id str
    The OCID of the compartment in which to list resources.
    database_tools_connection_id str
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    display_name str
    A filter to return only resources that match the entire specified display name.
    filters Sequence[GetDatabaseToolsMcpServersFilter]
    related_resource_identifier str
    The OCID of the related resource.
    state str
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    types Sequence[str]
    A filter to return only resources with one of the specified type values.
    compartmentId String
    The OCID of the compartment in which to list resources.
    databaseToolsConnectionId String
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    displayName String
    A filter to return only resources that match the entire specified display name.
    filters List<Property Map>
    relatedResourceIdentifier String
    The OCID of the related resource.
    state String
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    types List<String>
    A filter to return only resources with one of the specified type values.

    getDatabaseToolsMcpServers Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment containing the Database Tools MCP server.
    DatabaseToolsMcpServerCollections List<GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollection>
    The list of database_tools_mcp_server_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    DatabaseToolsConnectionId string
    The OCID of the related Database Tools connection.
    DisplayName string
    A user-friendly name. Does not have to be unique and can be updated. Avoid entering confidential information.
    Filters List<GetDatabaseToolsMcpServersFilter>
    RelatedResourceIdentifier string
    State string
    The current state of the Database Tools MCP server.
    Types List<string>
    The Database Tools MCP server type.
    CompartmentId string
    The OCID of the compartment containing the Database Tools MCP server.
    DatabaseToolsMcpServerCollections []GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollection
    The list of database_tools_mcp_server_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    DatabaseToolsConnectionId string
    The OCID of the related Database Tools connection.
    DisplayName string
    A user-friendly name. Does not have to be unique and can be updated. Avoid entering confidential information.
    Filters []GetDatabaseToolsMcpServersFilter
    RelatedResourceIdentifier string
    State string
    The current state of the Database Tools MCP server.
    Types []string
    The Database Tools MCP server type.
    compartment_id string
    The OCID of the compartment containing the Database Tools MCP server.
    database_tools_mcp_server_collections list(object)
    The list of database_tools_mcp_server_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    database_tools_connection_id string
    The OCID of the related Database Tools connection.
    display_name string
    A user-friendly name. Does not have to be unique and can be updated. Avoid entering confidential information.
    filters list(object)
    related_resource_identifier string
    state string
    The current state of the Database Tools MCP server.
    types list(string)
    The Database Tools MCP server type.
    compartmentId String
    The OCID of the compartment containing the Database Tools MCP server.
    databaseToolsMcpServerCollections List<GetMcpServersMcpServerCollection>
    The list of database_tools_mcp_server_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    databaseToolsConnectionId String
    The OCID of the related Database Tools connection.
    displayName String
    A user-friendly name. Does not have to be unique and can be updated. Avoid entering confidential information.
    filters List<GetMcpServersFilter>
    relatedResourceIdentifier String
    state String
    The current state of the Database Tools MCP server.
    types List<String>
    The Database Tools MCP server type.
    compartmentId string
    The OCID of the compartment containing the Database Tools MCP server.
    databaseToolsMcpServerCollections GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollection[]
    The list of database_tools_mcp_server_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    databaseToolsConnectionId string
    The OCID of the related Database Tools connection.
    displayName string
    A user-friendly name. Does not have to be unique and can be updated. Avoid entering confidential information.
    filters GetDatabaseToolsMcpServersFilter[]
    relatedResourceIdentifier string
    state string
    The current state of the Database Tools MCP server.
    types string[]
    The Database Tools MCP server type.
    compartment_id str
    The OCID of the compartment containing the Database Tools MCP server.
    database_tools_mcp_server_collections Sequence[GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollection]
    The list of database_tools_mcp_server_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    database_tools_connection_id str
    The OCID of the related Database Tools connection.
    display_name str
    A user-friendly name. Does not have to be unique and can be updated. Avoid entering confidential information.
    filters Sequence[GetDatabaseToolsMcpServersFilter]
    related_resource_identifier str
    state str
    The current state of the Database Tools MCP server.
    types Sequence[str]
    The Database Tools MCP server type.
    compartmentId String
    The OCID of the compartment containing the Database Tools MCP server.
    databaseToolsMcpServerCollections List<Property Map>
    The list of database_tools_mcp_server_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    databaseToolsConnectionId String
    The OCID of the related Database Tools connection.
    displayName String
    A user-friendly name. Does not have to be unique and can be updated. Avoid entering confidential information.
    filters List<Property Map>
    relatedResourceIdentifier String
    state String
    The current state of the Database Tools MCP server.
    types List<String>
    The Database Tools MCP server type.

    Supporting Types

    GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollection

    GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItem

    AccessTokenExpiryInSeconds int
    Access token expiry in seconds
    BuiltInRoles List<GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemBuiltInRole>
    Built-in roles associated with the MCP Server.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    CustomRoles List<GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemCustomRole>
    Custom roles associated with the MCP Server.
    DatabaseToolsConnectionId string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    A human-readable description of the Database Tools MCP server.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    DomainAppId string
    The OCID of the associated domain application (Oracle Cloud Service).
    DomainId string
    The OCID of the associated identity domain.
    Endpoints List<GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemEndpoint>
    Invoke endpoints for the MCP server.
    FreeformTags Dictionary<string, string>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    The OCID of the Database Tools MCP server.
    LifecycleDetails string
    A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.
    Locks List<GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemLock>
    Locks associated with this resource.
    RefreshTokenExpiryInSeconds int
    Refresh token expiry in seconds
    RelatedResources List<GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemRelatedResource>
    A related resource
    RuntimeIdentity string
    Specifies the identity used by the Database Tools MCP server to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault).
    State string
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    Storages List<GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemStorage>
    The storage option used when running a tool asynchronously.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the Database Tools MCP server was updated. An RFC3339 formatted datetime string.
    Type string
    A filter to return only resources with one of the specified type values.
    AccessTokenExpiryInSeconds int
    Access token expiry in seconds
    BuiltInRoles []GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemBuiltInRole
    Built-in roles associated with the MCP Server.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    CustomRoles []GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemCustomRole
    Custom roles associated with the MCP Server.
    DatabaseToolsConnectionId string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    A human-readable description of the Database Tools MCP server.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    DomainAppId string
    The OCID of the associated domain application (Oracle Cloud Service).
    DomainId string
    The OCID of the associated identity domain.
    Endpoints []GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemEndpoint
    Invoke endpoints for the MCP server.
    FreeformTags map[string]string
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    The OCID of the Database Tools MCP server.
    LifecycleDetails string
    A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.
    Locks []GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemLock
    Locks associated with this resource.
    RefreshTokenExpiryInSeconds int
    Refresh token expiry in seconds
    RelatedResources []GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemRelatedResource
    A related resource
    RuntimeIdentity string
    Specifies the identity used by the Database Tools MCP server to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault).
    State string
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    Storages []GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemStorage
    The storage option used when running a tool asynchronously.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the Database Tools MCP server was updated. An RFC3339 formatted datetime string.
    Type string
    A filter to return only resources with one of the specified type values.
    access_token_expiry_in_seconds number
    Access token expiry in seconds
    built_in_roles list(object)
    Built-in roles associated with the MCP Server.
    compartment_id string
    The OCID of the compartment in which to list resources.
    custom_roles list(object)
    Custom roles associated with the MCP Server.
    database_tools_connection_id string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    defined_tags map(string)
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    A human-readable description of the Database Tools MCP server.
    display_name string
    A filter to return only resources that match the entire specified display name.
    domain_app_id string
    The OCID of the associated domain application (Oracle Cloud Service).
    domain_id string
    The OCID of the associated identity domain.
    endpoints list(object)
    Invoke endpoints for the MCP server.
    freeform_tags map(string)
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    The OCID of the Database Tools MCP server.
    lifecycle_details string
    A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.
    locks list(object)
    Locks associated with this resource.
    refresh_token_expiry_in_seconds number
    Refresh token expiry in seconds
    related_resources list(object)
    A related resource
    runtime_identity string
    Specifies the identity used by the Database Tools MCP server to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault).
    state string
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    storages list(object)
    The storage option used when running a tool asynchronously.
    system_tags map(string)
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created string
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    time_updated string
    The time the Database Tools MCP server was updated. An RFC3339 formatted datetime string.
    type string
    A filter to return only resources with one of the specified type values.
    accessTokenExpiryInSeconds Integer
    Access token expiry in seconds
    builtInRoles List<GetMcpServersMcpServerCollectionItemBuiltInRole>
    Built-in roles associated with the MCP Server.
    compartmentId String
    The OCID of the compartment in which to list resources.
    customRoles List<GetMcpServersMcpServerCollectionItemCustomRole>
    Custom roles associated with the MCP Server.
    databaseToolsConnectionId String
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    A human-readable description of the Database Tools MCP server.
    displayName String
    A filter to return only resources that match the entire specified display name.
    domainAppId String
    The OCID of the associated domain application (Oracle Cloud Service).
    domainId String
    The OCID of the associated identity domain.
    endpoints List<GetMcpServersMcpServerCollectionItemEndpoint>
    Invoke endpoints for the MCP server.
    freeformTags Map<String,String>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    The OCID of the Database Tools MCP server.
    lifecycleDetails String
    A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.
    locks List<GetMcpServersMcpServerCollectionItemLock>
    Locks associated with this resource.
    refreshTokenExpiryInSeconds Integer
    Refresh token expiry in seconds
    relatedResources List<GetMcpServersMcpServerCollectionItemRelatedResource>
    A related resource
    runtimeIdentity String
    Specifies the identity used by the Database Tools MCP server to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault).
    state String
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    storages List<GetMcpServersMcpServerCollectionItemStorage>
    The storage option used when running a tool asynchronously.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the Database Tools MCP server was updated. An RFC3339 formatted datetime string.
    type String
    A filter to return only resources with one of the specified type values.
    accessTokenExpiryInSeconds number
    Access token expiry in seconds
    builtInRoles GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemBuiltInRole[]
    Built-in roles associated with the MCP Server.
    compartmentId string
    The OCID of the compartment in which to list resources.
    customRoles GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemCustomRole[]
    Custom roles associated with the MCP Server.
    databaseToolsConnectionId string
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    A human-readable description of the Database Tools MCP server.
    displayName string
    A filter to return only resources that match the entire specified display name.
    domainAppId string
    The OCID of the associated domain application (Oracle Cloud Service).
    domainId string
    The OCID of the associated identity domain.
    endpoints GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemEndpoint[]
    Invoke endpoints for the MCP server.
    freeformTags {[key: string]: string}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    The OCID of the Database Tools MCP server.
    lifecycleDetails string
    A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.
    locks GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemLock[]
    Locks associated with this resource.
    refreshTokenExpiryInSeconds number
    Refresh token expiry in seconds
    relatedResources GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemRelatedResource[]
    A related resource
    runtimeIdentity string
    Specifies the identity used by the Database Tools MCP server to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault).
    state string
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    storages GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemStorage[]
    The storage option used when running a tool asynchronously.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    timeUpdated string
    The time the Database Tools MCP server was updated. An RFC3339 formatted datetime string.
    type string
    A filter to return only resources with one of the specified type values.
    access_token_expiry_in_seconds int
    Access token expiry in seconds
    built_in_roles Sequence[GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemBuiltInRole]
    Built-in roles associated with the MCP Server.
    compartment_id str
    The OCID of the compartment in which to list resources.
    custom_roles Sequence[GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemCustomRole]
    Custom roles associated with the MCP Server.
    database_tools_connection_id str
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    A human-readable description of the Database Tools MCP server.
    display_name str
    A filter to return only resources that match the entire specified display name.
    domain_app_id str
    The OCID of the associated domain application (Oracle Cloud Service).
    domain_id str
    The OCID of the associated identity domain.
    endpoints Sequence[GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemEndpoint]
    Invoke endpoints for the MCP server.
    freeform_tags Mapping[str, str]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id str
    The OCID of the Database Tools MCP server.
    lifecycle_details str
    A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.
    locks Sequence[GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemLock]
    Locks associated with this resource.
    refresh_token_expiry_in_seconds int
    Refresh token expiry in seconds
    related_resources Sequence[GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemRelatedResource]
    A related resource
    runtime_identity str
    Specifies the identity used by the Database Tools MCP server to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault).
    state str
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    storages Sequence[GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemStorage]
    The storage option used when running a tool asynchronously.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    time_updated str
    The time the Database Tools MCP server was updated. An RFC3339 formatted datetime string.
    type str
    A filter to return only resources with one of the specified type values.
    accessTokenExpiryInSeconds Number
    Access token expiry in seconds
    builtInRoles List<Property Map>
    Built-in roles associated with the MCP Server.
    compartmentId String
    The OCID of the compartment in which to list resources.
    customRoles List<Property Map>
    Custom roles associated with the MCP Server.
    databaseToolsConnectionId String
    A filter to return only resources when their databaseToolsConnectionId matches the specified databaseToolsConnectionId.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    A human-readable description of the Database Tools MCP server.
    displayName String
    A filter to return only resources that match the entire specified display name.
    domainAppId String
    The OCID of the associated domain application (Oracle Cloud Service).
    domainId String
    The OCID of the associated identity domain.
    endpoints List<Property Map>
    Invoke endpoints for the MCP server.
    freeformTags Map<String>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    The OCID of the Database Tools MCP server.
    lifecycleDetails String
    A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.
    locks List<Property Map>
    Locks associated with this resource.
    refreshTokenExpiryInSeconds Number
    Refresh token expiry in seconds
    relatedResources List<Property Map>
    A related resource
    runtimeIdentity String
    Specifies the identity used by the Database Tools MCP server to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault).
    state String
    A filter to return resources only when their databaseToolsMcpServerLifecycleState matches the specified databaseToolsMcpServerLifecycleState.
    storages List<Property Map>
    The storage option used when running a tool asynchronously.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the Database Tools MCP server was updated. An RFC3339 formatted datetime string.
    type String
    A filter to return only resources with one of the specified type values.

    GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemBuiltInRole

    Description string
    A human-readable description of the Database Tools MCP server.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    Description string
    A human-readable description of the Database Tools MCP server.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    description string
    A human-readable description of the Database Tools MCP server.
    display_name string
    A filter to return only resources that match the entire specified display name.
    description String
    A human-readable description of the Database Tools MCP server.
    displayName String
    A filter to return only resources that match the entire specified display name.
    description string
    A human-readable description of the Database Tools MCP server.
    displayName string
    A filter to return only resources that match the entire specified display name.
    description str
    A human-readable description of the Database Tools MCP server.
    display_name str
    A filter to return only resources that match the entire specified display name.
    description String
    A human-readable description of the Database Tools MCP server.
    displayName String
    A filter to return only resources that match the entire specified display name.

    GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemCustomRole

    Description string
    A human-readable description of the Database Tools MCP server.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    Description string
    A human-readable description of the Database Tools MCP server.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    description string
    A human-readable description of the Database Tools MCP server.
    display_name string
    A filter to return only resources that match the entire specified display name.
    description String
    A human-readable description of the Database Tools MCP server.
    displayName String
    A filter to return only resources that match the entire specified display name.
    description string
    A human-readable description of the Database Tools MCP server.
    displayName string
    A filter to return only resources that match the entire specified display name.
    description str
    A human-readable description of the Database Tools MCP server.
    display_name str
    A filter to return only resources that match the entire specified display name.
    description String
    A human-readable description of the Database Tools MCP server.
    displayName String
    A filter to return only resources that match the entire specified display name.

    GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemEndpoint

    Endpoint string
    The URI endpoint of the MCP server
    Type string
    A filter to return only resources with one of the specified type values.
    Endpoint string
    The URI endpoint of the MCP server
    Type string
    A filter to return only resources with one of the specified type values.
    endpoint string
    The URI endpoint of the MCP server
    type string
    A filter to return only resources with one of the specified type values.
    endpoint String
    The URI endpoint of the MCP server
    type String
    A filter to return only resources with one of the specified type values.
    endpoint string
    The URI endpoint of the MCP server
    type string
    A filter to return only resources with one of the specified type values.
    endpoint str
    The URI endpoint of the MCP server
    type str
    A filter to return only resources with one of the specified type values.
    endpoint String
    The URI endpoint of the MCP server
    type String
    A filter to return only resources with one of the specified type values.

    GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemLock

    Message string
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    RelatedResourceId string
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    TimeCreated string
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    Type string
    A filter to return only resources with one of the specified type values.
    Message string
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    RelatedResourceId string
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    TimeCreated string
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    Type string
    A filter to return only resources with one of the specified type values.
    message string
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    related_resource_id string
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    time_created string
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    type string
    A filter to return only resources with one of the specified type values.
    message String
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    relatedResourceId String
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated String
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    type String
    A filter to return only resources with one of the specified type values.
    message string
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    relatedResourceId string
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated string
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    type string
    A filter to return only resources with one of the specified type values.
    message str
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    related_resource_id str
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    time_created str
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    type str
    A filter to return only resources with one of the specified type values.
    message String
    A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
    relatedResourceId String
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated String
    The time the Database Tools MCP server was created. An RFC3339 formatted datetime string.
    type String
    A filter to return only resources with one of the specified type values.

    GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemRelatedResource

    EntityType string
    The resource entity type.
    Identifier string
    The OCID of the related resource.
    EntityType string
    The resource entity type.
    Identifier string
    The OCID of the related resource.
    entity_type string
    The resource entity type.
    identifier string
    The OCID of the related resource.
    entityType String
    The resource entity type.
    identifier String
    The OCID of the related resource.
    entityType string
    The resource entity type.
    identifier string
    The OCID of the related resource.
    entity_type str
    The resource entity type.
    identifier str
    The OCID of the related resource.
    entityType String
    The resource entity type.
    identifier String
    The OCID of the related resource.

    GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemStorage

    Buckets List<GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemStorageBucket>
    The Object Storage bucket to use.
    Type string
    A filter to return only resources with one of the specified type values.
    Buckets []GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemStorageBucket
    The Object Storage bucket to use.
    Type string
    A filter to return only resources with one of the specified type values.
    buckets list(object)
    The Object Storage bucket to use.
    type string
    A filter to return only resources with one of the specified type values.
    buckets List<GetMcpServersMcpServerCollectionItemStorageBucket>
    The Object Storage bucket to use.
    type String
    A filter to return only resources with one of the specified type values.
    buckets GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemStorageBucket[]
    The Object Storage bucket to use.
    type string
    A filter to return only resources with one of the specified type values.
    buckets Sequence[GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemStorageBucket]
    The Object Storage bucket to use.
    type str
    A filter to return only resources with one of the specified type values.
    buckets List<Property Map>
    The Object Storage bucket to use.
    type String
    A filter to return only resources with one of the specified type values.

    GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemStorageBucket

    Bucket string
    The Object Storage bucket to use.
    Namespace string
    The Object Storage namespace to use.
    Bucket string
    The Object Storage bucket to use.
    Namespace string
    The Object Storage namespace to use.
    bucket string
    The Object Storage bucket to use.
    namespace string
    The Object Storage namespace to use.
    bucket String
    The Object Storage bucket to use.
    namespace String
    The Object Storage namespace to use.
    bucket string
    The Object Storage bucket to use.
    namespace string
    The Object Storage namespace to use.
    bucket str
    The Object Storage bucket to use.
    namespace str
    The Object Storage namespace to use.
    bucket String
    The Object Storage bucket to use.
    namespace String
    The Object Storage namespace to use.

    GetDatabaseToolsMcpServersFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name string
    values list(string)
    regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.12.0
    published on Thursday, May 21, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial