create_tally_form
Generate customizable Tally forms with specified titles and descriptions to streamline data collection and management using the Tally MCP Server.
Instructions
Create a new Tally form
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | The description of the form | |
title | Yes | The title of the form |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The description of the form",
"type": "string"
},
"title": {
"description": "The title of the form",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}