Feed ManagementWrite

Create Feed

create_feed

Create a new data pipeline feed. Source must be one of: sync, extractor, upload. DataType must be one of: transactions, balances, trades, holdings, loans, receipts, invoices, documents.

Try asking

Sync my Chase transactions to my Google Sheet.

Parameters

ParameterTypeRequiredDescription
workspaceIdstringrequiredWorkspace ID — get from list_workspaces. Portal workspaces are valid here when you manage them (look for `isInherited: true` in list_workspaces).
namestringrequiredHuman-readable feed name
sourceenum: 'sync' | 'extractor' | 'upload'requiredFeed source type
dataTypeenumrequiredType of financial data
sourceConfigobjectoptionalBank sync or extractor configuration
destinationConfigobjectoptionalDestination (Notion/Airtable/Sheets) config
fieldMappingsarrayoptionalSource-to-destination field mappings
scheduleobjectoptionalAutomated sync schedule

Example call

The tool call an MCP client sends (required arguments shown with placeholder values).

{
"tool": "create_feed",
"arguments": {
"workspaceId": "workspaceId_123",
"name": "value",
"source": "value",
"dataType": "value"
}
}

Use this tool in

Related Feed Management tools