Viewing docs for Oracle Cloud Infrastructure v4.12.0
published on Thursday, May 21, 2026 by Pulumi
published on Thursday, May 21, 2026 by Pulumi
Viewing docs for Oracle Cloud Infrastructure v4.12.0
published on Thursday, May 21, 2026 by Pulumi
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 dictionarydata "oci_databasetools_getdatabasetoolsmcpservers" "name" {
# arguments
}The following arguments are supported:
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Database
Tools stringConnection Id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - Display
Name string - A filter to return only resources that match the entire specified display name.
- Filters
List<Get
Database Tools Mcp Servers Filter> - string
- The OCID of the related resource.
- State string
- A filter to return resources only when their
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - Types List<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 stringConnection Id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - Display
Name string - A filter to return only resources that match the entire specified display name.
- Filters
[]Get
Database Tools Mcp Servers Filter - string
- The OCID of the related resource.
- State string
- A filter to return resources only when their
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - 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_ stringconnection_ id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - display_
name string - A filter to return only resources that match the entire specified display name.
- filters list(object)
- string
- The OCID of the related resource.
- state string
- A filter to return resources only when their
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - types list(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 StringConnection Id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - display
Name String - A filter to return only resources that match the entire specified display name.
- filters
List<Get
Mcp Servers Filter> - String
- The OCID of the related resource.
- state String
- A filter to return resources only when their
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - types List<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 stringConnection Id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - display
Name string - A filter to return only resources that match the entire specified display name.
- filters
Get
Database Tools Mcp Servers Filter[] - string
- The OCID of the related resource.
- state string
- A filter to return resources only when their
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - 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_ strconnection_ id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - display_
name str - A filter to return only resources that match the entire specified display name.
- filters
Sequence[Get
Database Tools Mcp Servers Filter] - str
- The OCID of the related resource.
- state str
- A filter to return resources only when their
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - types Sequence[str]
- 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 StringConnection Id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - display
Name String - A filter to return only resources that match the entire specified display name.
- filters List<Property Map>
- String
- The OCID of the related resource.
- state String
- A filter to return resources only when their
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - types List<String>
- A filter to return only resources with one of the specified type values.
getDatabaseToolsMcpServers Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment containing the Database Tools MCP server.
- Database
Tools List<GetMcp Server Collections Database Tools Mcp Servers Database Tools Mcp Server Collection> - The list of database_tools_mcp_server_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Database
Tools stringConnection Id - 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<Get
Database Tools Mcp Servers Filter> - string
- State string
- The current state of the Database Tools MCP server.
- Types List<string>
- The Database Tools MCP server type.
- Compartment
Id string - The OCID of the compartment containing the Database Tools MCP server.
- Database
Tools []GetMcp Server Collections Database Tools Mcp Servers Database Tools Mcp Server Collection - The list of database_tools_mcp_server_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Database
Tools stringConnection Id - 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
[]Get
Database Tools Mcp Servers Filter - 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_ list(object)mcp_ server_ collections - The list of database_tools_mcp_server_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- database_
tools_ stringconnection_ id - 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)
- string
- state string
- The current state of the Database Tools MCP server.
- types list(string)
- The Database Tools MCP server type.
- compartment
Id String - The OCID of the compartment containing the Database Tools MCP server.
- database
Tools List<GetMcp Server Collections Mcp Servers Mcp Server Collection> - The list of database_tools_mcp_server_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- database
Tools StringConnection Id - 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<Get
Mcp Servers Filter> - String
- state String
- The current state of the Database Tools MCP server.
- types List<String>
- The Database Tools MCP server type.
- compartment
Id string - The OCID of the compartment containing the Database Tools MCP server.
- database
Tools GetMcp Server Collections Database Tools Mcp Servers Database Tools Mcp Server Collection[] - The list of database_tools_mcp_server_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- database
Tools stringConnection Id - 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
Get
Database Tools Mcp Servers Filter[] - 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_ Sequence[Getmcp_ server_ collections Database Tools Mcp Servers Database Tools Mcp Server Collection] - The list of database_tools_mcp_server_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- database_
tools_ strconnection_ id - 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[Get
Database Tools Mcp Servers Filter] - str
- state str
- The current state of the Database Tools MCP server.
- types Sequence[str]
- The Database Tools MCP server type.
- compartment
Id String - The OCID of the compartment containing the Database Tools MCP server.
- database
Tools List<Property Map>Mcp Server Collections - The list of database_tools_mcp_server_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- database
Tools StringConnection Id - 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<Property Map>
- 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
- Access
Token intExpiry In Seconds - Access token expiry in seconds
- Built
In List<GetRoles Database Tools Mcp Servers Database Tools Mcp Server Collection Item Built In Role> - Built-in roles associated with the MCP Server.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Custom
Roles List<GetDatabase Tools Mcp Servers Database Tools Mcp Server Collection Item Custom Role> - Custom roles associated with the MCP Server.
- Database
Tools stringConnection Id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - 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.
- Display
Name string - A filter to return only resources that match the entire specified display name.
- Domain
App stringId - The OCID of the associated domain application (Oracle Cloud Service).
- Domain
Id string - The OCID of the associated identity domain.
- Endpoints
List<Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Endpoint> - Invoke endpoints for the MCP server.
- 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.
- 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<Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Lock> - Locks associated with this resource.
- Refresh
Token intExpiry In Seconds - Refresh token expiry in seconds
-
List<Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Related Resource> - 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
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - Storages
List<Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Storage> - The storage option used when running a tool asynchronously.
- Dictionary<string, 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.
- Access
Token intExpiry In Seconds - Access token expiry in seconds
- Built
In []GetRoles Database Tools Mcp Servers Database Tools Mcp Server Collection Item Built In Role - Built-in roles associated with the MCP Server.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Custom
Roles []GetDatabase Tools Mcp Servers Database Tools Mcp Server Collection Item Custom Role - Custom roles associated with the MCP Server.
- Database
Tools stringConnection Id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - 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.
- Display
Name string - A filter to return only resources that match the entire specified display name.
- Domain
App stringId - The OCID of the associated domain application (Oracle Cloud Service).
- Domain
Id string - The OCID of the associated identity domain.
- Endpoints
[]Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Endpoint - Invoke endpoints for the MCP server.
- 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.
- 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
[]Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Lock - Locks associated with this resource.
- Refresh
Token intExpiry In Seconds - Refresh token expiry in seconds
-
[]Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Related Resource - 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
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - Storages
[]Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Storage - The storage option used when running a tool asynchronously.
- map[string]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.
- access_
token_ numberexpiry_ in_ seconds - Access token expiry in seconds
- built_
in_ list(object)roles - 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_ stringconnection_ id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - 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_ stringid - 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.
- 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_ numberexpiry_ in_ seconds - Refresh token expiry in seconds
- 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
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - storages list(object)
- The storage option used when running a tool asynchronously.
- 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.
- access
Token IntegerExpiry In Seconds - Access token expiry in seconds
- built
In List<GetRoles Mcp Servers Mcp Server Collection Item Built In Role> - Built-in roles associated with the MCP Server.
- compartment
Id String - The OCID of the compartment in which to list resources.
- custom
Roles List<GetMcp Servers Mcp Server Collection Item Custom Role> - Custom roles associated with the MCP Server.
- database
Tools StringConnection Id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - 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.
- display
Name String - A filter to return only resources that match the entire specified display name.
- domain
App StringId - The OCID of the associated domain application (Oracle Cloud Service).
- domain
Id String - The OCID of the associated identity domain.
- endpoints
List<Get
Mcp Servers Mcp Server Collection Item Endpoint> - Invoke endpoints for the MCP server.
- 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.
- 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<Get
Mcp Servers Mcp Server Collection Item Lock> - Locks associated with this resource.
- refresh
Token IntegerExpiry In Seconds - Refresh token expiry in seconds
-
List<Get
Mcp Servers Mcp Server Collection Item Related Resource> - 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
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - storages
List<Get
Mcp Servers Mcp Server Collection Item Storage> - The storage option used when running a tool asynchronously.
- Map<String,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.
- access
Token numberExpiry In Seconds - Access token expiry in seconds
- built
In GetRoles Database Tools Mcp Servers Database Tools Mcp Server Collection Item Built In Role[] - Built-in roles associated with the MCP Server.
- compartment
Id string - The OCID of the compartment in which to list resources.
- custom
Roles GetDatabase Tools Mcp Servers Database Tools Mcp Server Collection Item Custom Role[] - Custom roles associated with the MCP Server.
- database
Tools stringConnection Id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - {[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.
- display
Name string - A filter to return only resources that match the entire specified display name.
- domain
App stringId - The OCID of the associated domain application (Oracle Cloud Service).
- domain
Id string - The OCID of the associated identity domain.
- endpoints
Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Endpoint[] - Invoke endpoints for the MCP server.
- {[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.
- 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
Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Lock[] - Locks associated with this resource.
- refresh
Token numberExpiry In Seconds - Refresh token expiry in seconds
-
Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Related Resource[] - 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
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - storages
Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Storage[] - The storage option used when running a tool asynchronously.
- {[key: string]: 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.
- access_
token_ intexpiry_ in_ seconds - Access token expiry in seconds
- built_
in_ Sequence[Getroles Database Tools Mcp Servers Database Tools Mcp Server Collection Item Built In Role] - Built-in roles associated with the MCP Server.
- compartment_
id str - The OCID of the compartment in which to list resources.
- custom_
roles Sequence[GetDatabase Tools Mcp Servers Database Tools Mcp Server Collection Item Custom Role] - Custom roles associated with the MCP Server.
- database_
tools_ strconnection_ id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - 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_ strid - The OCID of the associated domain application (Oracle Cloud Service).
- domain_
id str - The OCID of the associated identity domain.
- endpoints
Sequence[Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Endpoint] - Invoke endpoints for the MCP server.
- 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[Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Lock] - Locks associated with this resource.
- refresh_
token_ intexpiry_ in_ seconds - Refresh token expiry in seconds
-
Sequence[Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Related Resource] - 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
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - storages
Sequence[Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Storage] - The storage option used when running a tool asynchronously.
- 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.
- access
Token NumberExpiry In Seconds - Access token expiry in seconds
- built
In List<Property Map>Roles - Built-in roles associated with the MCP Server.
- compartment
Id String - The OCID of the compartment in which to list resources.
- custom
Roles List<Property Map> - Custom roles associated with the MCP Server.
- database
Tools StringConnection Id - A filter to return only resources when their
databaseToolsConnectionIdmatches the specifieddatabaseToolsConnectionId. - 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 StringId - The OCID of the associated domain application (Oracle Cloud Service).
- domain
Id String - The OCID of the associated identity domain.
- endpoints List<Property Map>
- Invoke endpoints for the MCP server.
- 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<Property Map>
- Locks associated with this resource.
- refresh
Token NumberExpiry In Seconds - Refresh token expiry in seconds
- List<Property Map>
- 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
databaseToolsMcpServerLifecycleStatematches the specifieddatabaseToolsMcpServerLifecycleState. - storages List<Property Map>
- The storage option used when running a tool asynchronously.
- 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.
GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemBuiltInRole
- 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.
- 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.
- 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.
- 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.
- display
Name 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.
- display
Name 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.
- 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.
- 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.
- 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.
- 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.
- display
Name 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.
- display
Name String - A filter to return only resources that match the entire specified display name.
GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemEndpoint
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.
- 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.
- 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.
- 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.
- 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.
- 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 str
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
- 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.
- 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.
GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemRelatedResource
- Entity
Type 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.
- entity_
type 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.
- entity
Type 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.
- entity
Type String - The resource entity type.
- identifier String
- The OCID of the related resource.
GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollectionItemStorage
- Buckets
List<Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Storage Bucket> - The Object Storage bucket to use.
- Type string
- A filter to return only resources with one of the specified type values.
- Buckets
[]Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Storage Bucket - 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<Get
Mcp Servers Mcp Server Collection Item Storage Bucket> - The Object Storage bucket to use.
- type String
- A filter to return only resources with one of the specified type values.
- buckets
Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Storage Bucket[] - The Object Storage bucket to use.
- type string
- A filter to return only resources with one of the specified type values.
- buckets
Sequence[Get
Database Tools Mcp Servers Database Tools Mcp Server Collection Item Storage Bucket] - 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
GetDatabaseToolsMcpServersFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Viewing docs for Oracle Cloud Infrastructure v4.12.0
published on Thursday, May 21, 2026 by Pulumi
published on Thursday, May 21, 2026 by Pulumi