get_form
Retrieve details of a specific Tally form by providing its unique ID. Simplify form management and integration via Tally MCP's AI-driven interface.
Instructions
Retrieve details of a specific Tally form
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| formId | Yes | ID of the form to retrieve |
Implementation Reference
- src/server.ts:1413-1423 (registration)MCP tool registration for 'get_form' with input schema requiring a formId stringname: 'get_form', description: 'Retrieve information about a specific Tally form', inputSchema: { type: 'object', properties: { formId: { type: 'string', description: 'ID of the form to retrieve' } }, required: ['formId'] } }, {
- src/server.ts:1413-1423 (schema)Input schema definition for the 'get_form' toolname: 'get_form', description: 'Retrieve information about a specific Tally form', inputSchema: { type: 'object', properties: { formId: { type: 'string', description: 'ID of the form to retrieve' } }, required: ['formId'] } }, {
- Core helper method getForm in TallyApiService that retrieves a specific form by ID via the API client. This service is used by tool implementations like form_retrieval_tool for listing forms and likely intended for single form retrieval.public async getForm(formId: string): Promise<TallyForm> { return this.apiClient.getForm(formId); }
- Implementation of getForm in TallyApiClient, which handles the actual API call or mock for retrieving a single form.public async getForm(formId: string): Promise<TallyForm> { if (this.isMockEnabled()) { const mockRes = await tallyApiMock.getForm(formId);