home / mcp / myob accountright mcp server
This read-only MCP Server allows you to connect to MYOB AccountRight data from Claude Desktop through CData JDBC Drivers. For full CRUD support, check out the first managed MCP platform: CData Connect AI (https://www.cdata.com/ai/).
Configuration
View docs{
"mcpServers": {
"cdatasoftware-myob-accountright-mcp-server-by-cdata": {
"command": "java",
"args": [
"-jar",
"CDataMCP-jar-with-dependencies.jar",
"/PATH/TO/myob-accountright.prp"
]
}
}
}You can query live MYOB AccountRight data using a read-only MCP server built on the CData JDBC Driver. This server exposes your MYOB AccountRight data through an MCP interface so you can ask natural language questions and receive current results without writing SQL.
You run the MCP server locally and connect your MCP client to it. The server presents tools that let you list available data (tables and columns) and run read-only queries against MYOB AccountRight data exposed by the CData JDBC Driver.
In practice, you will interact with your MCP client to discover the data surface and then ask questions such as retrieving specific records, counts, or summaries. The client will invoke the built-in tools to access the underlying data and return results in a usable format.
Prerequisites: Java is required to run the MCP server. You will also need the CData JDBC Driver for MYOB AccountRight installed and licensed.
Step 1: Build the MCP server project (if you have the source available). Run these commands in your terminal:
# Build the MCP server project
mvn clean installStep 2: Prepare the MCP runtime command. The server runs as a standard Java application and uses a .prp file to configure the JDBC connection.
java -jar CDataMCP-jar-with-dependencies.jar /PATH/TO/myob-accountright.prpThe MCP server is designed for local, read-only access. It uses a .prp file to specify the JDBC driver path, driver class, and the connection string to MYOB AccountRight.
To integrate with Claude Desktop or another MCP client, add an MCP server entry that points to the local java command and the .prp file. Example configuration structure is shown in the tooling section.
Retrieves a list of tables available in the data source. The output is returned in CSV format with a header row containing column names.
Retrieves a list of columns for a specified table. The output is returned in CSV format with a header row containing column names.
Executes a SQL SELECT query against the exposed data source.