Skip to main content
Glama

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
NameRequiredDescriptionDefault
formIdYesID of the form to retrieve

Implementation Reference

  • MCP tool registration for 'get_form' with input schema requiring a formId string
    name: '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'] } }, {
  • Input schema definition for the 'get_form' tool
    name: '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);

Other Tools

Related Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/learnwithcc/tally-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server