Oracle Database 19c · Capability
Oracle Database 19c - Oracle REST Data Services (ORDS) API
Oracle REST Data Services (ORDS) on Oracle Database 19c. Exposes RESTful endpoints for SQL queries, PL/SQL execution, schema management, AutoREST table access, SODA document collections, and the data dictionary catalog.
What You Can Do
POST
Executesql
— Execute SQL
/{schema}/_/sql
GET
Getmetadatacatalog
— List the schema's REST endpoints catalog
/{schema}/metadata-catalog/
GET
Querytable
— Query an AutoREST-enabled table or view
/{schema}/{table}/
POST
Insertrow
— Insert a row
/{schema}/{table}/
GET
Getrow
— Get a row by primary key
/{schema}/{table}/{id}
PUT
Updaterow
— Update a row by primary key
/{schema}/{table}/{id}
DELETE
Deleterow
— Delete a row
/{schema}/{table}/{id}
GET
Listsodadocuments
— List documents in a SODA collection
/{schema}/soda/latest/{collection}
POST
Insertsodadocument
— Insert a document into a SODA collection
/{schema}/soda/latest/{collection}
GET
Getsodadocument
— Get a SODA document by key
/{schema}/soda/latest/{collection}/{key}
PUT
Replacesodadocument
— Replace a SODA document
/{schema}/soda/latest/{collection}/{key}
DELETE
Deletesodadocument
— Delete a SODA document
/{schema}/soda/latest/{collection}/{key}
MCP Tools
executesql
Execute SQL
getmetadatacatalog
List the schema's REST endpoints catalog
read-only
idempotent
querytable
Query an AutoREST-enabled table or view
read-only
idempotent
insertrow
Insert a row
getrow
Get a row by primary key
read-only
idempotent
updaterow
Update a row by primary key
idempotent
deleterow
Delete a row
idempotent
listsodadocuments
List documents in a SODA collection
read-only
idempotent
insertsodadocument
Insert a document into a SODA collection
getsodadocument
Get a SODA document by key
read-only
idempotent
replacesodadocument
Replace a SODA document
idempotent
deletesodadocument
Delete a SODA document
idempotent