Create an MCP Toolset
- In the Model Context Protocol Servers page, click the name of the MCP Server that was created.
- In the specific MCP Server page, select the Toolsets tab.
- Click Create Model Context Protocol Toolset.
-
Enter the following details for creating the Toolset. The following example is an SQL query for a Toolset that lists the employees that match a specific criteria.
Note
Ensure that theEMPLOYEEStable already exists and includes theFIRST_NAMEandLAST_NAMEcolumns before creating the Toolset.- Name: Enter a name for the
Toolset, such as
List employees matching substring. - Description: Enter a description
for the Toolset such as
List employees matching substring passed as parameter "substring". - Compartment: Select the compartment for the Toolset.
- Type: Select the type of Toolset. In this example, select Custom SQL tool.
- Tool name: Enter
list_employees_matching_substring. - Tool description: Enter
List employees matching substring passed as parameter "substring". - Allowed Roles: Select from the predefined application roles. See Application Roles for more information.
- SQL source: Enter the following
code for this
example:
SELECT * FROM EMPLOYEES WHERE LAST_NAME LIKE'%'|| :substring ||'%' OR FIRST_NAME LIKE'%'|| :substring ||'%' - Variables: Add Name
substring, TypeVARCHAR2, and Description"The substring to search for in first name and last name".
- Name: Enter a name for the
Toolset, such as
- Click Create.