All data sources

Palantir Foundry

Bearer tokenpalantir-foundry

Palantir Foundry — enterprise data platform. Ontology, datasets, SQL, orchestration, admin, AIP agents, streams. Domains: Ontology (objects/links/actions/queries/timeseries/attachments), Datasets+Branches+Transactions+Files, SQL (async), Orchestration (builds/schedules), Admin (users/groups), AIP Agents, Streams, Connectivity, Filesystem. RULES: 1. Requires Bearer token (PAT) from {stack}/workspace/settings/tokens. 2. All methods need 'stack' (e.g. "mycompany.palantirfoundry.com"). 3. Ontology operations need 'ontologyRid' — use listOntologies. 4. Use listObjectTypes before querying objects. 5. Search filters: {field, type:"eq", value}. 6. SQL is async: executeSql → poll getSqlQueryStatus → getSqlQueryResults. 7. Builds async: createBuild → poll getBuild.

Provenance

PublisherPalantir Foundry

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationCredentials required (Bearer token)

Methods (92)

  • listOntologies

    read

    List all ontologies.

    Required paramsstack
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack"
      ]
    }
  • getOntology

    read

    Get ontology details.

    Required paramsstackontologyRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid"
      ]
    }
  • getOntologyFullMetadata

    read

    Get full ontology metadata.

    Required paramsstackontologyRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid"
      ]
    }
  • listObjectTypes

    read

    List object types in an ontology.

    Required paramsstackontologyRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid"
      ]
    }
  • getObjectType

    read

    Get object type definition.

    Required paramsstackontologyRidobjectType
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "objectType": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "objectType"
      ]
    }
  • getObjectTypeFullMetadata

    read

    Get full object type metadata.

    Required paramsstackontologyRidobjectType
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "objectType": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "objectType"
      ]
    }
  • listOutgoingLinkTypes

    read

    List link types for an object type.

    Required paramsstackontologyRidobjectType
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "objectType": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "objectType"
      ]
    }
  • listObjects

    read

    List objects of a type.

    Required paramsstackontologyRidobjectType
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "objectType": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        },
        "orderBy": {
          "type": "string"
        },
        "properties": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "objectType"
      ]
    }
  • getObject

    read

    Get a single object by primary key.

    Required paramsstackontologyRidobjectTypeprimaryKey
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "objectType": {
          "type": "string"
        },
        "primaryKey": {
          "type": "string"
        },
        "properties": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "objectType",
        "primaryKey"
      ]
    }
  • searchObjects

    read

    Search objects with filters.

    Required paramsstackontologyRidobjectType
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "objectType": {
          "type": "string"
        },
        "where": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        },
        "orderBy": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        },
        "properties": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "objectType"
      ]
    }
  • aggregateObjects

    read

    Aggregate objects (count, sum, avg, etc).

    Required paramsstackontologyRidobjectTypeaggregation
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "objectType": {
          "type": "string"
        },
        "aggregation": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {},
            "additionalProperties": true
          }
        },
        "where": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        },
        "groupBy": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {},
            "additionalProperties": true
          }
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "objectType",
        "aggregation"
      ]
    }
  • countObjects

    read

    Count objects matching a filter.

    Required paramsstackontologyRidobjectType
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "objectType": {
          "type": "string"
        },
        "where": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "objectType"
      ]
    }
  • listLinkedObjects

    read

    List objects linked to a source object.

    Required paramsstackontologyRidobjectTypeprimaryKeylinkType
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "objectType": {
          "type": "string"
        },
        "primaryKey": {
          "type": "string"
        },
        "linkType": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "objectType",
        "primaryKey",
        "linkType"
      ]
    }
  • getLinkedObject

    read

    Get a specific linked object.

    Required paramsstackontologyRidobjectTypeprimaryKeylinkTypelinkedObjectPrimaryKey
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "objectType": {
          "type": "string"
        },
        "primaryKey": {
          "type": "string"
        },
        "linkType": {
          "type": "string"
        },
        "linkedObjectPrimaryKey": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "objectType",
        "primaryKey",
        "linkType",
        "linkedObjectPrimaryKey"
      ]
    }
  • listActionTypes

    read

    List action types in an ontology.

    Required paramsstackontologyRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid"
      ]
    }
  • getActionType

    read

    Get action type details.

    Required paramsstackontologyRidactionType
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "actionType": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "actionType"
      ]
    }
  • applyAction

    unknown

    Apply an action (create/update/delete objects).

    Required paramsstackontologyRidactionTypeparameters
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "actionType": {
          "type": "string"
        },
        "parameters": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "actionType",
        "parameters"
      ]
    }
  • applyActionBatch

    unknown

    Apply an action in batch.

    Required paramsstackontologyRidactionTyperequests
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "actionType": {
          "type": "string"
        },
        "requests": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "parameters": {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              }
            },
            "required": [
              "parameters"
            ],
            "additionalProperties": false
          }
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "actionType",
        "requests"
      ]
    }
  • listQueryTypes

    read

    List query types.

    Required paramsstackontologyRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid"
      ]
    }
  • executeQuery

    read

    Execute an ontology query.

    Required paramsstackontologyRidqueryApiNameparameters
    Entitiesquery
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "queryApiName": {
          "type": "string"
        },
        "parameters": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "queryApiName",
        "parameters"
      ]
    }
  • getTimeSeriesFirstPoint

    read

    Get first time series data point.

    Required paramsstackontologyRidobjectTypeprimaryKeyproperty
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "objectType": {
          "type": "string"
        },
        "primaryKey": {
          "type": "string"
        },
        "property": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "objectType",
        "primaryKey",
        "property"
      ]
    }
  • getTimeSeriesLastPoint

    read

    Get last time series data point.

    Required paramsstackontologyRidobjectTypeprimaryKeyproperty
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "objectType": {
          "type": "string"
        },
        "primaryKey": {
          "type": "string"
        },
        "property": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "objectType",
        "primaryKey",
        "property"
      ]
    }
  • streamTimeSeriesPoints

    read

    Stream time series points for a date range.

    Required paramsstackontologyRidobjectTypeprimaryKeyproperty
    Entitiestimeseries
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "ontologyRid": {
          "type": "string"
        },
        "objectType": {
          "type": "string"
        },
        "primaryKey": {
          "type": "string"
        },
        "property": {
          "type": "string"
        },
        "range": {
          "type": "object",
          "properties": {
            "startTime": {
              "type": "string"
            },
            "endTime": {
              "type": "string"
            }
          },
          "additionalProperties": false
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "ontologyRid",
        "objectType",
        "primaryKey",
        "property"
      ]
    }
  • getAttachment

    read

    Get attachment metadata (Palantir Foundry).

    Required paramsstackattachmentRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "attachmentRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "attachmentRid"
      ]
    }
  • uploadAttachment

    write

    Upload an attachment.

    Required paramsstackfilenamecontent
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "filename": {
          "type": "string"
        },
        "content": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "filename",
        "content"
      ]
    }
  • createDataset

    write

    Create a new dataset (Palantir Foundry).

    Required paramsstacknameparentFolderRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "parentFolderRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "name",
        "parentFolderRid"
      ]
    }
  • getDataset

    read

    Get dataset details (Palantir Foundry).

    Required paramsstackdatasetRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid"
      ]
    }
  • getDatasetSchema

    read

    Get dataset schema (columns, types).

    Required paramsstackdatasetRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "branchName": {
          "type": "string"
        },
        "transactionRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid"
      ]
    }
  • readDataset

    read

    Read dataset contents.

    Required paramsstackdatasetRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "format": {
          "type": "string"
        },
        "columns": {
          "type": "string"
        },
        "branchName": {
          "type": "string"
        },
        "startTransactionRid": {
          "type": "string"
        },
        "endTransactionRid": {
          "type": "string"
        },
        "rowLimit": {
          "type": "number"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid"
      ]
    }
  • listBranches

    read

    List dataset branches.

    Required paramsstackdatasetRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid"
      ]
    }
  • getBranch

    read

    Get branch details.

    Required paramsstackdatasetRidbranchName
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "branchName": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid",
        "branchName"
      ]
    }
  • createBranch

    write

    Create a dataset branch.

    Required paramsstackdatasetRidbranchName
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "branchName": {
          "type": "string"
        },
        "transactionRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid",
        "branchName"
      ]
    }
  • deleteBranch

    write

    Delete a dataset branch.

    Required paramsstackdatasetRidbranchName
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "branchName": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid",
        "branchName"
      ]
    }
  • createTransaction

    write

    Create a dataset transaction.

    Required paramsstackdatasetRidtransactionType
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "transactionType": {
          "type": "string"
        },
        "branchName": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid",
        "transactionType"
      ]
    }
  • getTransaction

    read

    Get transaction details.

    Required paramsstackdatasetRidtransactionRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "transactionRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid",
        "transactionRid"
      ]
    }
  • commitTransaction

    unknown

    Commit a transaction.

    Required paramsstackdatasetRidtransactionRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "transactionRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid",
        "transactionRid"
      ]
    }
  • abortTransaction

    unknown

    Abort a transaction.

    Required paramsstackdatasetRidtransactionRid
    Entitiestransaction
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "transactionRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid",
        "transactionRid"
      ]
    }
  • listFiles

    read

    List files in a dataset.

    Required paramsstackdatasetRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "branchName": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid"
      ]
    }
  • getFile

    read

    Get file metadata (Palantir Foundry).

    Required paramsstackdatasetRidfilePath
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "filePath": {
          "type": "string"
        },
        "branchName": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid",
        "filePath"
      ]
    }
  • uploadFile

    write

    Upload a file to a dataset.

    Required paramsstackdatasetRidfilePathtransactionRidcontent
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "filePath": {
          "type": "string"
        },
        "transactionRid": {
          "type": "string"
        },
        "content": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid",
        "filePath",
        "transactionRid",
        "content"
      ]
    }
  • deleteFile

    write

    Delete a file from a dataset.

    Required paramsstackdatasetRidfilePathtransactionRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "filePath": {
          "type": "string"
        },
        "transactionRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid",
        "filePath",
        "transactionRid"
      ]
    }
  • executeSql

    unknown

    Execute a read-only SQL query (async).

    Required paramsstackquery
    Entitiesquery
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "query": {
          "type": "string"
        },
        "dialect": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "query"
      ]
    }
  • getSqlQueryStatus

    read

    Check SQL query execution status.

    Required paramsstackqueryId
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "queryId": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "queryId"
      ]
    }
  • getSqlQueryResults

    read

    Get SQL query results.

    Required paramsstackqueryId
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "queryId": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "queryId"
      ]
    }
  • cancelSqlQuery

    write

    Cancel a running SQL query.

    Required paramsstackqueryId
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "queryId": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "queryId"
      ]
    }
  • createBuild

    write

    Trigger a build for datasets (Palantir Foundry).

    Required paramsstack
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRids": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "branchName": {
          "type": "string"
        },
        "fallbackBranches": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "additionalProperties": false,
      "required": [
        "stack"
      ]
    }
  • getBuild

    read

    Get build status (Palantir Foundry).

    Required paramsstackbuildRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "buildRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "buildRid"
      ]
    }
  • cancelBuild

    write

    Cancel a running build.

    Required paramsstackbuildRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "buildRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "buildRid"
      ]
    }
  • searchBuilds

    read

    Search builds by dataset/status.

    Required paramsstack
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRids": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "branchName": {
          "type": "string"
        },
        "statuses": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack"
      ]
    }
  • getBuildJobs

    read

    List jobs in a build.

    Required paramsstackbuildRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "buildRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "buildRid"
      ]
    }
  • getJob

    read

    Get job details (Palantir Foundry).

    Required paramsstackjobRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "jobRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "jobRid"
      ]
    }
  • createSchedule

    write

    Create a build schedule.

    Required paramsstackdisplayNamecronExpressiondatasetRids
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "displayName": {
          "type": "string"
        },
        "cronExpression": {
          "type": "string"
        },
        "datasetRids": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "branchName": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "displayName",
        "cronExpression",
        "datasetRids"
      ]
    }
  • getSchedule

    read

    Get schedule details (Palantir Foundry).

    Required paramsstackscheduleRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "scheduleRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "scheduleRid"
      ]
    }
  • deleteSchedule

    write

    Delete a schedule.

    Required paramsstackscheduleRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "scheduleRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "scheduleRid"
      ]
    }
  • pauseSchedule

    unknown

    Pause a schedule.

    Required paramsstackscheduleRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "scheduleRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "scheduleRid"
      ]
    }
  • unpauseSchedule

    unknown

    Unpause a schedule.

    Required paramsstackscheduleRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "scheduleRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "scheduleRid"
      ]
    }
  • runSchedule

    write

    Trigger a schedule run.

    Required paramsstackscheduleRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "scheduleRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "scheduleRid"
      ]
    }
  • getScheduleRuns

    read

    List runs for a schedule.

    Required paramsstackscheduleRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "scheduleRid": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "scheduleRid"
      ]
    }
  • listUsers

    read

    List all users.

    Required paramsstack
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack"
      ]
    }
  • getUser

    read

    Get user details.

    Required paramsstackuserId
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "userId": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "userId"
      ]
    }
  • getCurrentUser

    read

    Get the current authenticated user.

    Required paramsstack
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack"
      ]
    }
  • searchUsers

    read

    Search users by name/email.

    Required paramsstackquery
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "query": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "query"
      ]
    }
  • deleteUser

    write

    Delete a user.

    Required paramsstackuserId
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "userId": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "userId"
      ]
    }
  • listGroups

    read

    List all groups (Palantir Foundry).

    Required paramsstack
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack"
      ]
    }
  • getGroup

    read

    Get group details (Palantir Foundry).

    Required paramsstackgroupId
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "groupId": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "groupId"
      ]
    }
  • createGroup

    write

    Create a new group (Palantir Foundry).

    Required paramsstackname
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "organizations": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "name"
      ]
    }
  • deleteGroup

    write

    Delete a group (Palantir Foundry).

    Required paramsstackgroupId
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "groupId": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "groupId"
      ]
    }
  • listGroupMembers

    read

    List group members.

    Required paramsstackgroupId
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "groupId": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "groupId"
      ]
    }
  • addGroupMembers

    write

    Add members to a group.

    Required paramsstackgroupIdprincipalIds
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "groupId": {
          "type": "string"
        },
        "principalIds": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "groupId",
        "principalIds"
      ]
    }
  • removeGroupMembers

    write

    Remove members from a group.

    Required paramsstackgroupIdprincipalIds
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "groupId": {
          "type": "string"
        },
        "principalIds": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "groupId",
        "principalIds"
      ]
    }
  • getAgent

    read

    Get AIP agent details.

    Required paramsstackagentRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "agentRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "agentRid"
      ]
    }
  • listAgentSessions

    read

    List agent sessions.

    Required paramsstackagentRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "agentRid": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "agentRid"
      ]
    }
  • createAgentSession

    write

    Create a new agent session.

    Required paramsstackagentRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "agentRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "agentRid"
      ]
    }
  • getAgentSession

    read

    Get session details.

    Required paramsstackagentRidsessionRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "agentRid": {
          "type": "string"
        },
        "sessionRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "agentRid",
        "sessionRid"
      ]
    }
  • continueAgentSession

    unknown

    Send a message to continue an agent session.

    Required paramsstackagentRidsessionRidmessage
    Entitiesagent session
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "agentRid": {
          "type": "string"
        },
        "sessionRid": {
          "type": "string"
        },
        "message": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "agentRid",
        "sessionRid",
        "message"
      ]
    }
  • cancelAgentSession

    write

    Cancel an agent session.

    Required paramsstackagentRidsessionRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "agentRid": {
          "type": "string"
        },
        "sessionRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "agentRid",
        "sessionRid"
      ]
    }
  • getAgentSessionContent

    read

    Get session conversation content.

    Required paramsstackagentRidsessionRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "agentRid": {
          "type": "string"
        },
        "sessionRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "agentRid",
        "sessionRid"
      ]
    }
  • getAgentRagContext

    read

    Get RAG context for an agent session.

    Required paramsstackagentRidsessionRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "agentRid": {
          "type": "string"
        },
        "sessionRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "agentRid",
        "sessionRid"
      ]
    }
  • createStream

    write

    Create a new stream.

    Required paramsstackdatasetRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "schema": {
          "type": "object",
          "properties": {},
          "additionalProperties": true
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "datasetRid"
      ]
    }
  • getStream

    read

    Get stream details.

    Required paramsstackstreamRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "streamRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "streamRid"
      ]
    }
  • publishRecords

    write

    Publish records to a stream.

    Required paramsstackstreamRidrecords
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "streamRid": {
          "type": "string"
        },
        "records": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {},
            "additionalProperties": true
          }
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "streamRid",
        "records"
      ]
    }
  • getStreamRecords

    read

    Read records from a stream.

    Required paramsstackstreamRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "streamRid": {
          "type": "string"
        },
        "startOffset": {
          "type": "string"
        },
        "limit": {
          "type": "number"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "streamRid"
      ]
    }
  • getConnection

    read

    Get connection details.

    Required paramsstackconnectionRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "connectionRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "connectionRid"
      ]
    }
  • createFileImport

    write

    Create a file import.

    Required paramsstackconnectionRiddatasetRidfilePath
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "connectionRid": {
          "type": "string"
        },
        "datasetRid": {
          "type": "string"
        },
        "filePath": {
          "type": "string"
        },
        "importMode": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "connectionRid",
        "datasetRid",
        "filePath"
      ]
    }
  • getFileImport

    write

    Get file import details.

    Required paramsstackconnectionRidfileImportRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "connectionRid": {
          "type": "string"
        },
        "fileImportRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "connectionRid",
        "fileImportRid"
      ]
    }
  • executeFileImport

    write

    Execute a file import.

    Required paramsstackconnectionRidfileImportRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "connectionRid": {
          "type": "string"
        },
        "fileImportRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "connectionRid",
        "fileImportRid"
      ]
    }
  • listFileImports

    read

    List file imports for a connection.

    Required paramsstackconnectionRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "connectionRid": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "connectionRid"
      ]
    }
  • getFolder

    read

    Get folder details (Palantir Foundry).

    Required paramsstackfolderRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "folderRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "folderRid"
      ]
    }
  • listFolderChildren

    read

    List folder contents.

    Required paramsstackfolderRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "folderRid": {
          "type": "string"
        },
        "pageSize": {
          "type": "number"
        },
        "pageToken": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "folderRid"
      ]
    }
  • createFolder

    write

    Create a folder (Palantir Foundry).

    Required paramsstackparentFolderRidname
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "parentFolderRid": {
          "type": "string"
        },
        "name": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "parentFolderRid",
        "name"
      ]
    }
  • getProject

    read

    Get project details (Palantir Foundry).

    Required paramsstackprojectRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "projectRid": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "projectRid"
      ]
    }
  • createProject

    write

    Create a project.

    Required paramsstackdisplayNameparentFolderRid
    Input schema
    {
      "type": "object",
      "properties": {
        "stack": {
          "type": "string"
        },
        "displayName": {
          "type": "string"
        },
        "parentFolderRid": {
          "type": "string"
        },
        "description": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stack",
        "displayName",
        "parentFolderRid"
      ]
    }