Skip to main content
Glama
LawrenceCirillo

QuickBase MCP Server

quickbase_get_reports

Retrieve all reports associated with a specific table in QuickBase using the MCP server, enabling efficient data management and analysis. Input the table ID to access relevant reports.

Instructions

Get all reports for a table

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tableIdYesTable ID

Implementation Reference

  • Core implementation of quickbase_get_reports: fetches reports for a given tableId via QuickBase API /reports endpoint.
    async getReports(tableId: string): Promise<any[]> { const response = await this.axios.get('/reports', { params: { tableId } }); return response.data; }
  • MCP server dispatch handler for quickbase_get_reports tool, validates args and delegates to QuickBaseClient.getReports.
    case 'quickbase_get_reports': if (!args || typeof args !== 'object') { throw new Error('Invalid arguments'); } return { content: [ { type: 'text', text: JSON.stringify(await this.qbClient.getReports(args.tableId as string), null, 2), }, ], };
  • Tool registration in quickbaseTools array, including name, description, and input schema for MCP server.
    name: 'quickbase_get_reports', description: 'Get all reports for a table', inputSchema: { type: 'object', properties: { tableId: { type: 'string', description: 'Table ID' } }, required: ['tableId'] } },
  • JSON schema definition for quickbase_get_reports input parameters (tableId required).
    type: 'object', properties: { tableId: { type: 'string', description: 'Table ID' } }, required: ['tableId'] }

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/LawrenceCirillo/QuickBase-MCP-Server'

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