Tally Prime MCP (Model Context Protocol) Server implementation to feed Tally Prime ERP data to popular LLM like Claude, ChatGPT supporting MCP client. This MCP Server helps expose functionalities of Tally to LLM directly.
- Tally Prime (Silver / Gold)
- Node JS
Ensure below things are pre-installed and setup:
- Ensure to download & install Node JS from official website
- XML Port of Tally Prime must be enabled (F1 > Settings > Connectivity > Client/Server configuration) with below settings
TallyPrime acts as = Server
Port = 9000
Note: Kindly avoid using Educational version of Tally Prime, which has limitations of date range. It will result in invalid / partial data being fed to LLM, leading to highly degraded & incorrect responses.
Avoid cloning repository directly. Utility is available for download (with required dependencies) on below link
https://excelkida.com/resource/tally-mcp-server-v7.5.zip
One-click installer extension for Claude Desktop
https://excelkida.com/resource/tally-mcp-server-v7.5.mcpb
Last updated: version 7.5 [10-Aug-2026]
Refer docs/CHANGELOG.md for details
Implementation was tested on below AI platform
| Platform | Local | Remote |
|---|---|---|
| Claude AI | ✔️ | ✔️ |
| ChatGPT | ✔️ | |
| Grok | ✔️ |
This mode of setup is to be used when MCP Client (like Claude Desktop, Perplexity etc.) and Tally Prime both exists in local PC. MCP Client software itself runs the MCP Server internally in such scenario.
Simply download & extract zip file somewhere on the disk. Assuming that we downloaded & extracted zip file on below path (folder)
D:\Software\Tally MCP Server
A sample setup for few popular tools is demonstrated.
Desktop version of Claude AI supports loading of local MCP server. Ensure you have Pro / Team / Max / Enterprise subscription of Claude, which supports higher limit compared to Free. MCP makes multiple calls to Tally for validation and inference, which might exhaust free limits quickly. Download Claude Desktop from following link claude.ai/download
Go to menu > File > Settings
Extensions > Advance Settings
Click on install extension button
Browse the extension file (with file extension mcpb) download at the start
A dialog window will appear asking Do you want to install Tally Prime? click Install button, which would install the Tally MCP Server
Go to menu > File > Settings > Developer
This will open My Computer window. Right click and edit claude_desktop_config.json file (via Notepad) with as below JSON
{
"mcpServers": {
"Tally Prime": {
"command": "node",
"args": ["D:\\Software\\Tally MCP Server\\dist\\index.mjs"]
}
}
}Note: single slash in folder path needs to be substituted with double slash
Save the file. Close Claude Desktop (menu > File > Exit) and again re-launch it.
Verify by clicking on Tools button and check if Tally Prime appears in the list (screenshot below)
Perplexity Desktop version for MacOS supports connecting to local MCP server. Configuration file (JSON format) is same as demonstrated for Claude Desktop. In absense of MacBook, documentation with screenshot could not be written. Kindly refer to below blog on perplexity website, which explains the steps.
Perplexity Desktop MCP Connectivity
This mode of setup is to be used, when using browser-based MCP client like ChatGPT, Claude AI, Copilot, OR mobile-based app for these LLM which cannot access Tally Prime running inside local PC. In this scenario, MCP Server needs to run as web-server, internally connected to Tally securely. Setup is quite complicated, and is covered in detail in docs folder of this project.
- Linux-based Server
- Windows Server (exploration in-progress)
This server currently exposes 19 MCP tools.
Returns metadata for supported collections.
Input No input.
Output JSON array with objects containing:
collectiondescription
Returns predefined option values used by input fields.
Input
| Argument | Description |
|---|---|
| optionName | Supported: country-state |
Output JSON array of option values for the selected option name.
Returns field metadata for a selected collection.
Input
| Argument | Description |
|---|---|
| collection | Collection name. Use metadata-collection to discover valid values |
Output
JSON array of field metadata containing field name, description (if any), and normalized datatype (string, number, date, boolean).
Runs SQL query on in-memory pglite tables previously created by reporting tools.
Input
| Argument | Description |
|---|---|
| sql | SELECT query only |
| outputFormat | One of JSON Array of Objects, JSON with Schema and Rows, CSV, Markdown Table. Default is JSON Array of Objects which is preferred format |
Output Query result in tab-separated text format.
Queries a Tally collection for selected fields and caches output in an in-memory table.
Input
| Argument | Description |
|---|---|
| collection | Collection name |
| fields | Array of field names to fetch |
| targetCompany (optional) | Company name (defaults to active company) |
| fromDate (optional) | Date in YYYY-MM-DD |
| toDate (optional) | Date in YYYY-MM-DD |
Output
JSON: { "tableID": "..." }
Fetches list of masters for validation and auto-completion.
Input
| Argument | Description |
|---|---|
| targetCompany (optional) | Company name (defaults to active company) |
| collection | One of: group, ledger, vouchertype, unit, godown, stockgroup, stockitem, costcategory, costcentre, attendancetype, company, currency, gstin, gstclassification |
| containsFilter (optional) | filter to apply CONTAINS operation to restrict values |
Output
JSON: { "list": [ ... ] }
Extracts Chart of Accounts (or Group hierarchy) useful for preparing Balance Sheet, Profit and Loss, Trial Balance
Input
| Argument | Description |
|---|---|
| targetCompany (optional) | Company name (defaults to active company) |
Output
JSON: { "tableID": "..." } with columns:
ledger_namegroup_nameprimary_groupbs_pl(boolean) [true = Profit & Loss / false = Balance Sheet]dr_cr(boolean) [true = Debit / false = Credit]affects_gross_profit(boolean) [true = Affects Gross Profit / false = Does not affect Gross Profit]sort_position(number)
Fetches trial balance for period.
Input
| Argument | Description |
|---|---|
| targetCompany (optional) | Company name (defaults to active company) |
| fromDate | Date in YYYY-MM-DD |
| toDate | Date in YYYY-MM-DD |
| group_name (optional) | Filter by group name |
Output
JSON: { "tableID": "..." } with columns:
ledger_namegroup_nameopening_balance(number) [negative = Debit / positive = Credit]net_debitnet_creditclosing_balance(number) [negative = Debit / positive = Credit]
Fetches profit and loss data for period.
Input
| Argument | Description |
|---|---|
| targetCompany (optional) | Company name (defaults to active company) |
| fromDate | Date in YYYY-MM-DD |
| toDate | Date in YYYY-MM-DD |
Output
JSON: { "tableID": "..." } with columns:
ledger_namegroup_nameclosing_balance(number) [negative = Debit / positive = Credit]
Fetches balance sheet data for period.
Input
| Argument | Description |
|---|---|
| targetCompany (optional) | Company name (defaults to active company) |
| fromDate | Date in YYYY-MM-DD |
| toDate | Date in YYYY-MM-DD |
Output
JSON: { "tableID": "..." } with columns:
ledger_namegroup_nameclosing_balance(number) [negative = Debit / positive = Credit]
Fetches stock item summary for period.
Input
| Argument | Description |
|---|---|
| targetCompany (optional) | Company name (defaults to active company) |
| fromDate | Date in YYYY-MM-DD |
| toDate | Date in YYYY-MM-DD |
| stockGroup (optional) | Filter by stock group name |
Output
JSON: { "tableID": "..." } with columns:
stock_item_namestock_group_nameopening_quantity(number)opening_value(number) [negative = Debit / positive = Credit]inward_quantity(number)inward_value(number)outward_quantity(number)outward_value(number)closing_quantity(number)closing_value(number) [negative = Debit / positive = Credit]
Returns ledger closing balance as on date.
Input
| Argument | Description |
|---|---|
| targetCompany (optional) | Company name (defaults to active company) |
| ledgerName | Exact ledger name |
| toDate | Date in YYYY-MM-DD |
Output
JSON: { "amount": number } where negative = Debit and positive = Credit.
Returns stock item closing quantity as on date.
Input
| Argument | Description |
|---|---|
| targetCompany (optional) | Company name (defaults to active company) |
| itemName | Exact stock item name |
| toDate | Date in YYYY-MM-DD |
Output
JSON: { "quantity": number, "unit_of_measurement": string } when found.
Fetches receivable/payable bill-wise outstanding as on date.
Input
| Argument | Description |
|---|---|
| targetCompany (optional) | Company name (defaults to active company) |
| nature | receivable or payable |
| toDate | Date in YYYY-MM-DD |
Output
JSON: { "tableID": "..." } with columns:
bill_datereference_numberoutstanding_amountparty_nameoverdue_days
Fetches ledger account statement for period.
Input
| Argument | Description |
|---|---|
| targetCompany (optional) | Company name (defaults to active company) |
| ledgerName | Ledger name |
| fromDate | Date in YYYY-MM-DD |
| toDate | Date in YYYY-MM-DD |
Output
JSON: { "tableID": "..." } with columns:
guiddatevoucher_typevoucher_numberalternate_ledgerparty_nameamount(number) [negative = Debit / positive = Credit]narration
Fetches stock item account statement for period.
Input
| Argument | Description |
|---|---|
| targetCompany (optional) | Company name (defaults to active company) |
| itemName | Stock item name |
| fromDate | Date in YYYY-MM-DD |
| toDate | Date in YYYY-MM-DD |
Output
JSON: { "tableID": "..." } with columns:
datevoucher_typevoucher_numberparty_ledgerquantityamount(number) [negative = Debit / positive = Credit]narrationtracking_numbervoucher_category
Creates or updates one or more ledger.
Note: This tool has ability to modify existing ledger. Always backup your Company before instructing this tool.
Input
| Argument | Description |
|---|---|
| targetCompany (optional) | Company name (defaults to active company) |
| masters | Array of ledger master objects to create/update |
Master ledger object accepts following
| Property | Description |
|---|---|
| name | Ledger name or New Ledger name (during update) |
| _name | Existing ledger name |
| parent | Group under which ledger would exists |
| openingBalance | (optional) Opening Balance of the Ledger |
| isBillWise | (optional) flag to set Bill-by-Bill referencing |
| billCreditPeriod | (optional) Credit Period for bill in days |
| mailingDetails | (optional) Business Name for mailing purpose, country, state, pincode, address |
| gstRegistrationDetails | (optional) GST registration details like GST Number, Registration Type, Place of Supply (state) |
Output JSON result returned by import operation (success/failure details).
Delete one (or more) masters from Tally
Input
| Argument | Description |
|---|---|
| targetCompany (optional) | Company name (defaults to active company) |
| collection | Type of master or collection to delete. One of: group, ledger, vouchertype, unit, godown, stockgroup, stockitem, costcategory, costcentre, attendancetype, company, currency, gstin, gstclassification |
| name | array of name(s) of master to be deleted |
Output JSON result returned by delete operation (count of deleted, skipped, etc).
Sets active company context in Tally Prime.
Input
| Argument | Description |
|---|---|
| companyName | Company name to activate |
Output
JSON string: "OK" on success.
Sets active reporting period context in Tally Prime.
Input
| Argument | Description |
|---|---|
| fromDate | Start date in YYYY-MM-DD |
| toDate | End date in YYYY-MM-DD |
Output
JSON string: "OK" on success.
End-users are free to hard-code few settings which needs to be applied
| Variable | Description |
|---|---|
| TALLY_PORT | Port Number of XML Server of Tally (optional, default is 9000) |
| TALLY_HOST | Host name or IP where XML Server is running (optional, default is localhost) |
| BLOCK_WRITE | Controls if MCP completely block access of write functionality. Setting this flag to value 1 will completely hide write functionality tools from the tool list. [ 0 = Allow , 1 = Block ] (optional, default is 0 i.e. allowed). Not applicable for Claude Desktop (as it offers graphical switch to disable write functionality) |
| PORT | Tally MCP Server port number. Applicable only if Tally Prime MCP Server is deployed as Remote MCP server (optional, default is 3000). Not applicable for Claude Desktop |
| MCP_DOMAIN | Domain name of Tally MCP Server website (optional, default is https://localhost:9000). Not applicable for Claude Desktop |
| PASSWORD | Password for the OAuth Login front-end page to authenticate genuine user (kindly set this to some complex password default is password). Not applicable for Claude Desktop |
Project developed & maintained by: Dhananjay Gokhale
Email: info@excelkida.com
Whatsapp: (+91) 90284-63366






