get_chunkInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"filePath": {
"type": "string",
"description": "Path to Excel/CSV file on disk OR public URL (.xlsx or .csv). Examples: './data.xlsx', '/path/to/file.csv', 'https://example.com/data.xlsx'"
},
"columns": {
"description": "Columns to include in the output. If not specified, all columns are included.",
"type": "array",
"items": {
"type": "string"
}
},
"start": {
"default": 0,
"description": "Row index to start from (0-based)",
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"limit": {
"default": 1000,
"description": "Number of rows to return in the chunk (default 1000)",
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991
}
},
"required": [
"filePath"
]
} | — | | — |
get_json_chunkInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"filePath": {
"type": "string",
"description": "Path to the JSON file on disk (.json)"
},
"fields": {
"description": "Fields to include in the output. If not specified, all fields are included.",
"type": "array",
"items": {
"type": "string"
}
},
"start": {
"default": 0,
"description": "Entry index to start from (0-based)",
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"limit": {
"default": 1000,
"description": "Number of entries to return in the chunk (default 1000)",
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991
}
},
"required": [
"filePath"
]
} | — | | — |
query_jsonInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"filePath": {
"type": "string",
"description": "Path to the JSON file on disk (.json)"
},
"query": {
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "The field to query (e.g., 'trading_symbol')"
},
"operator": {
"type": "string",
"enum": [
"contains",
"equals",
"startsWith",
"endsWith"
],
"description": "The query operator"
},
"value": {
"type": "string",
"description": "The value to match against"
}
},
"required": [
"field",
"operator",
"value"
],
"description": "The query to execute on the JSON data"
}
},
"required": [
"filePath",
"query"
]
} | — | | — |
read_excelInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"filePath": {
"type": "string",
"description": "Path to Excel/CSV file on disk OR public URL (.xlsx or .csv). Examples: './data.xlsx', '/path/to/file.csv', 'https://example.com/data.xlsx'"
},
"columns": {
"description": "Columns to include in the output. If not specified, all columns are included.",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"filePath"
]
} | — | | — |
read_jsonInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"filePath": {
"type": "string",
"description": "Path to JSON file on disk OR public URL (.json). Examples: './data.json', '/path/to/file.json', 'https://example.com/data.json'"
},
"fields": {
"description": "Fields to include in the output. If not specified, all fields are included.",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"filePath"
]
} | — | | — |