Talk to your QuickBooks Desktop data using Conductor’s MCP server and AI tools such as Claude Desktop or Cursor.
The Model Context Protocol (MCP) is an open specification that lets large-language-model (LLM) clients discover and call tools (functions) that run on your computer. Conductor publishes an open-source MCP server that exposes every Conductor API endpoint as an MCP tool.
This means you can ask an AI assistant such as Claude Desktop, Cursor, or OpenAI Code Interpreter to read or write QuickBooks Desktop data on your behalf. For example:
Ensure you have a Conductor secret key (create one in the dashboard if you haven’t already).
Start the MCP server from a terminal:
In Claude Desktop → Settings → Developer Tools → Edit Config, paste the JSON below into the claude_desktop_config.json
file it opens. Replace sk_conductor_...
with your Conductor secret key.
That’s it! The assistant will automatically chain the MCP tools (list_api_endpoints
→ get_api_endpoint_schema
→ invoke_api_endpoint
) to fulfil your requests and show you the JSON response.
You have two options when starting the server:
--tools=dynamic
) – three generic tools that let the LLM search, inspect, and invoke any endpoint on demand. Helpful when you want the entire API surface in a compact form.You can even combine both approaches or filter the explicit tools with flags like --resource
or --operation
– see the README for details.
Different LLM clients have different schema limitations. Pass --client=<name>
(e.g. claude
, cursor
, openai-agents
) so the MCP server tailors its output accordingly. You can also fine-tune individual capabilities with --capability
flags.