Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
AUTH_TOKEN | Yes | Server authentication token (configured in Cloudflare Workers) | |
TALLY_API_KEY | Yes | Your Tally API key (configured in Cloudflare Workers) |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
tally_form_sharing_guide | Guide for choosing the correct share type when sharing Tally forms |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
create_form | Create a new Tally form with specified fields and configuration. This tool converts simple field definitions into Tally's complex blocks-based structure automatically. The status field is optional and defaults to DRAFT if not specified. |
modify_form | Modify an existing Tally form |
get_form | Retrieve details of a specific Tally form |
list_forms | List all forms in the workspace |
delete_form | Delete a Tally form |
preview_bulk_delete | SAFETY PREVIEW: Show exactly which forms would be deleted before bulk deletion. MANDATORY: Present form details to human and require explicit "DELETE ALL" confirmation before proceeding to confirm_bulk_delete. |
confirm_bulk_delete | HUMAN CONFIRMATION: Confirm bulk deletion ONLY after human responds with exact phrase "DELETE ALL". DO NOT call this automatically - requires genuine human confirmation. |
bulk_delete_forms | 🚫 DEPRECATED: Use confirm_bulk_delete instead. This tool now requires human confirmation via the confirm_bulk_delete tool after preview_bulk_delete. The new workflow is: 1) preview_bulk_delete, 2) confirm_bulk_delete with user choice, 3) automatic execution. This tool is kept for backward compatibility but will reject calls without proper confirmation workflow. |
get_submissions | Retrieve submissions for a specific form |
analyze_submissions | Analyze form submissions and provide insights |
share_form | Generate sharing links and embed codes for a form |
manage_workspace | Manage workspace settings and information |
manage_team | Manage team members and permissions |
delete_form | DEPRECATED: Use preview_single_delete and confirm_single_delete for secure deletion |
preview_single_delete | Preview a single form before deletion. MANDATORY: Present form details to human and require explicit "DELETE" confirmation before proceeding to confirm_single_delete. |
confirm_single_delete | Confirm single form deletion ONLY after human responds with exact phrase "DELETE". DO NOT call this automatically - requires genuine human confirmation. |