- Home
- MCP servers
- MYOB AccountRight
MYOB AccountRight
- java
3
GitHub Stars
java
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
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.
How to use
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.
How to install
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 install
Step 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.prp
Additional configuration and usage notes
The 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.
Available tools
myob_accountright_get_tables
Retrieves a list of tables available in the data source. The output is returned in CSV format with a header row containing column names.
myob_accountright_get_columns
Retrieves a list of columns for a specified table. The output is returned in CSV format with a header row containing column names.
myob_accountright_run_query
Executes a SQL SELECT query against the exposed data source.