We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andrewkkchan/mcp_fivetran'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•354 B
from fivetran_connector_sdk import Connector
from fivetran_connector_sdk import Operations as op
def update(configuration: dict, state: dict):
data = [
{"id": 1, "name": "John Doe"},
{"id": 2, "name": "Jane Smith"}
]
for d in data:
yield op.upsert(table="test_table", data=d)
connector = Connector(update=update)