quickbase_test_connection
Verify connectivity to QuickBase by testing the connection through the MCP server, ensuring seamless integration and operational readiness for managing applications and data.
Instructions
Test connection to QuickBase
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:83-92 (handler)MCP server handler that processes tool calls for quickbase_test_connection by invoking QuickBaseClient.testConnection() and returning formatted success/failure message.case 'quickbase_test_connection': const isConnected = await this.qbClient.testConnection(); return { content: [ { type: 'text', text: `Connection ${isConnected ? 'successful' : 'failed'}`, }, ], };
- src/quickbase/client.ts:512-519 (helper)Core implementation of connection test: attempts to fetch app information; returns true on success, false on failure.async testConnection(): Promise<boolean> { try { await this.getAppInfo(); return true; } catch (error) { return false; } }
- src/tools/index.ts:126-133 (schema)Tool definition including name, description, and empty input schema (no parameters required).name: 'quickbase_test_connection', description: 'Test connection to QuickBase', inputSchema: { type: 'object', properties: {}, required: [] } },
- src/index.ts:50-52 (registration)Registers the list tools handler which returns the quickbaseTools array containing quickbase_test_connection.this.server.setRequestHandler(ListToolsRequestSchema, async () => { return { tools: quickbaseTools,