MCP
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:
- “How many invoices did we issue last week?”
- “Create a new customer called ACME Inc. with email billing@acme.com.”
Quickstart with Claude Desktop
-
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. Replacesk_conductor_...
with your Conductor secret key.claude_desktop_config.json
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.
Choosing the tool style
You have two options when starting the server:
- Explicit tools – one MCP tool per Conductor endpoint. Useful when you know exactly which operations you need and want the most accurate parameter suggestions.
- Dynamic tools (
--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.
Capabilities & clients
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.
Further reading
- Full README & CLI options: conductor-node-mcp on GitHub
- Model Context Protocol specification & client list: https://modelcontextprotocol.io