shared_importCsv

WRITE

Import csv.

Parameters

tablestringrequired
filePathstringrequired
columnMappingsanyrequired
enumMappingsanyoptional

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "shared_importCsv",
  "arguments": {
    "table": "string",
    "filePath": "string",
    "columnMappings": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "table": {
      "type": "string"
    },
    "filePath": {
      "type": "string"
    },
    "columnMappings": {},
    "enumMappings": {}
  },
  "required": [
    "table",
    "filePath",
    "columnMappings"
  ]
}