qb_list_accounts
Pack: quickbooks · Endpoint: https://gateway.pipeworx.io/quickbooks/mcp
Get your chart of accounts with account names, types (asset/liability/equity/etc), balances, and classifications.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
max_results | number | no | Maximum number of accounts to return (default 100, max 1000) |
Example call
Arguments
{
"max_results": 100
}
curl
curl -X POST https://gateway.pipeworx.io/quickbooks/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"qb_list_accounts","arguments":{"max_results":100}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('qb_list_accounts', {
"max_results": 100
});
Response shape
Full JSON Schema
{
"oneOf": [
{
"type": "object",
"properties": {
"error": {
"type": "string",
"description": "Error code if connection not configured"
},
"message": {
"type": "string",
"description": "Error message with setup instructions"
}
},
"required": [
"error",
"message"
]
},
{
"type": "object",
"properties": {
"QueryResponse": {
"type": "array",
"description": "Array of accounts with names, types, balances, and classifications",
"items": {
"type": "object",
"properties": {
"Id": {
"type": "string",
"description": "Account ID"
},
"Name": {
"type": "string",
"description": "Account name"
},
"AccountType": {
"type": "string",
"description": "Account type (asset/liability/equity/etc)"
},
"CurrentBalance": {
"type": "number",
"description": "Current account balance"
}
}
}
}
}
}
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"quickbooks": {
"url": "https://gateway.pipeworx.io/quickbooks/mcp"
}
}
}
See Getting Started for client-specific install steps.