Skip to main content
Glama

describe_modulo

Retrieve available fields for a VTENext CRM module to understand data structure and enable accurate data operations.

Instructions

Mostra i campi disponibili per un modulo VTENext

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
moduloYesNome del modulo (es. Potentials, Contacts, Activities)

Implementation Reference

  • The implementation of the describe_modulo tool. It takes 'modulo' as an input, calls client.describe(modulo), maps the fields to name, type, and label, and returns the result as a stringified JSON.
    server.tool(
      'describe_modulo',
      'Mostra i campi disponibili per un modulo VTENext',
      {
        modulo: z.string().describe('Nome del modulo (es. Potentials, Contacts, Activities)'),
      },
      async ({ modulo }) => {
        const result = await client.describe(modulo);
        const fields = result.fields.map(f => ({ name: f.name, type: f.type.name, label: f.label }));
        return {
          content: [{ type: 'text', text: JSON.stringify(fields, null, 2) }],
        };
      }

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/Castaldo-Solutions/mcp-vtenext'

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