create_integration
ActiveTool of mcp-server-dashform
declared in 1.0.0
Create a spreadsheet-style integration (Google Sheets/Airtable/Notion) on a form, mapping form answers to columns.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"formId",
"connectionId",
"defaultColumns",
"fieldMapping"
],
"properties": {
"formId": {
"type": "string"
},
"connectionId": {
"type": "string"
},
"fieldMapping": {
"type": "array",
"items": {
"type": "object",
"required": [
"formFieldId",
"column",
"ordinal"
],
"properties": {
"column": {
"type": "string"
},
"ordinal": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": 0
},
"formFieldId": {
"type": "string"
}
}
}
},
"defaultColumns": {
"type": "array",
"items": {
"enum": [
"reply_id",
"completed_at",
"respondent_email",
"respondent_name",
"source"
],
"type": "string"
}
}
}
}Parent server
mcp-server-dashform
https://github.com/makloai/mcp-server-dashform
2/7 registries