Accounting Ledger MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Accounting Ledger MCP ServerCreate a new ledger for my company 'TechStart'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Accounting Ledger Model Context Protocol Server
A Model Context Protocol (MCP) server that provides accounting ledger creation, transaction and reporting capabilities using the MCP Python SDK and Python Accounting library.
Overview
This MCP server enables AI assistants to interact with a double-entry accounting system, allowing for:
Creating accounting entities including the chart of accounts, currencies, and tax codes
Recording various types of transactions (cash sales, cash purchases, supplier invoices, customer bills)
Generating financial reports (profit & loss statements)
Related MCP server: QuickBooks Online MCP Server
πΉ Demo Video
Watch the MCP Accounting Ledger Server in action:
This demo shows the complete workflow from setup to creating ledgers, recording transactions, and generating reports using the MCP server with Claude Desktop.
Features
π’ Entity Management
Create accounting entities with default configuration (companies/organizations)
π° Transaction Recording
Cash Sales: Record immediate revenue transactions
Cash Purchases: Record immediate expense transactions
Client Invoices: Create receivable transactions
Supplier Bills: Create payable transactions
π Financial Reporting
Generate profit & loss statements
Customizable date ranges for reports
π§ Built-in Tools
Echo tool for testing connectivity
Comprehensive error handling
SQLite database backend
Installation
This project uses UV for dependency management. Make sure you have UV installed on your system.
Prerequisites
Install uv
Setup
Clone the repository: Clone this repository locally and update config.toml with the path to your local project
Create the virtual environment:
uv venvActivate the virtual environment:
source .venv/bin/activateInstall dependencies:
uv sync
Running the Server
Development Mode
To run the server in development mode:
uv run mcp dev server.pyThis will start the server the MCP Inspector which is a useful tool for testing and debugging the MCP server. To access the MCP Inspector navigate to http://localhost:6274.
Testing in Claude Desktop
After installing Claude Desktop add the MCP server to it by running:
uv run mcp install server.pyAfter running this command open Claude Desktop. There will most likely be an error with the MCP server. Open Claude Desktop settings, navigate to Developer, select our MCP Server (My Ledger) and click Edit Config. Open the JSON configuration file and update the command and args values as shown (replacing path_to_server with the path to the server on your local machine).
{
"mcpServers": {
"My Ledger": {
"command": "/path_to_server/.venv/bin/python",
"args": [
"/path_to_server/server.py"
]
}
}
}Now restart Claude Desktop and the MCP server should be working.
Available Tools
Tool | Description | Parameters |
| Test connectivity |
|
| Set up new accounting entity |
|
| Record cash sale transaction |
|
| Record cash purchase transaction |
|
| Create client invoice |
|
| Create supplier bill |
|
| Generate P&L report |
|
Configuration
The server uses a config.toml file for configuration. Key settings include:
Database: SQLite database URL
Account Types: Chart of accounts configuration
Transaction Types: Available transaction types and prefixes
Tax Settings: Default tax codes and rates
Reporting: Report formatting and sections
Database Schema
The system uses the Python Accounting library's database schema, which includes:
Entities: Companies/organizations
Currencies: Supported currencies
Accounts: Chart of accounts with types
Taxes: Tax codes and rates
Transactions: Various transaction types
Line Items: Transaction details
Development
Project Structure
mcpServerDemo/
βββ server.py # Main MCP server implementation
βββ main.py # Entry point
βββ pyproject.toml # UV project configuration
βββ config.toml # Accounting system configuration
βββ test_accounting.db # SQLite database
βββ python_accounting/ # Local Python Accounting libraryAdding New Features
Add new tools to
server.pyusing the@mcp.tool()decoratorUpdate the configuration in
config.tomlif neededTest using the MCP Inspector
Update this README with new tool documentation
Dependencies
mcp[cli]: Model Context Protocol SDK
python-dateutil: Date parsing utilities
sqlalchemy: Database ORM
strenum: String enumerations
toml: Configuration file parsing
Available Tools
7 toolscreate_ledgerB
Sets up the ledger by:
- Creating the SQLAlchemy engine from configuration.
- Running migrations to create tables.
- Creating a default reporting entity, currency, chart of accounts, and taxes if not present.
| Name | Required | Description | Default |
|---|---|---|---|
| entity_name | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavior. It honestly lists side effects (creating engine, migrating schema, inserting defaults) and notes the 'if not present' condition. However, it does not cover potential risks like destructive migrations, required permissions, or reversibility, leaving transparency gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a compact three-item bullet list, front-loaded with the purpose statement. Every line adds concrete action information, and there is no redundant or filler text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite the small surface area (one parameter, no output schema), the description is incomplete because it ignores the only required parameter, which is essential for invocation. It also doesn't address return values or prerequisites, leaving the agent without a full picture of how to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has one required parameter `entity_name` with zero description coverage, and the tool description does not mention it at all. This is critical: an agent cannot infer what `entity_name` represents (e.g., the ledger name, the default reporting entity's name) or its format. The description fails to compensate for the lack of schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose as setting up the ledger, listing specific actions: creating the SQLAlchemy engine, running migrations, and creating default entities. This distinguishes it from sibling tools that record transactions or generate reports.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
While the description implies the tool is for initial ledger setup, it does not explicitly state when to use it versus alternatives, nor does it provide exclusions or prerequisites. The mention of defaults 'if not present' hints at idempotent setup but lacks clear guidance such as 'run before other tools.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
echoA
Echoes the input message back to the user.
Args:
message (str): The message to echo.
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It transparently states the output is the same message, implying no side effects or modifications. The behavior is fully disclosed for a simple echo operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences, front-loaded with the main verb and object, with the parameter doc as a compact second sentence. Every word is useful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter utility with no output schema, this description is complete. It fully explains input, behavior, and result, without needing to mention return format since it is self-evident.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description explicitly defines the 'message' parameter as 'The message to echo', adding meaning beyond the schema's generic 'Message' title. Although schema coverage is 0%, this single parameter is fully explained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'echoes' with a clear resource 'the input message', clearly distinguishing this tool from the financial sibling tools. Its purpose is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives, nor any context or exclusions. The description only states what it does, not when to invoke it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_profit_loss_reportA
Generates a Profit & Loss (Income Statement) report in JSON format.
Args:
entity_name: Entity name to generate report for
start_date: Start date for the report (YYYY-MM-DD format, optional)
end_date: End date for the report (YYYY-MM-DD format, optional)
Returns:
JSON string containing the P&L report
| Name | Required | Description | Default |
|---|---|---|---|
| end_date | No | ||
| start_date | No | ||
| entity_name | No | Example Company |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions that the report is returned as a JSON string but does not disclose whether the operation is read-only, whether existing ledger data is required, or any constraints or side effects. For a tool that may depend on prior recorded entries, this is a notable gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured with a one-line summary followed by a clear Args/Returns layout. Every sentence adds value and there is no redundancy or irrelevant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the core purpose and parameters but leaves gaps: it does not mention default behavior when dates are omitted, that entity_name defaults to 'Example Company', or what happens if no financial records exist. It also lacks an output schema, so the return structure is only vaguely described as a 'P&L report.'
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, but the description compensates well by explaining all three parameters: entity_name (entity to generate report for) and start_date/end_date (with YYYY-MM-DD format and optionality). This goes beyond the schema, which only provides defaults and no descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Generates' and the specific resource 'Profit & Loss (Income Statement) report in JSON format,' making the tool's purpose unambiguous. It also contrasts with sibling tools like record_cash_sale and create_ledger, which are recording operations, so there is no confusion with other tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly state when to use this tool versus alternatives, but the sibling context implies it is the reporting tool among recording tools. No when-not conditions or alternative recommendations are provided, so usage guidance is only implied, not spelled out.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
record_cash_purchaseB
Records a cash purchase (expense) transaction.
Args:
narration: Description of the purchase
amount: Purchase amount (excluding tax)
quantity: Quantity of items purchased
tax_code: Tax code to apply (default: GSTIN)
entity_name: Entity name to use
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | ||
| quantity | No | ||
| tax_code | No | GSTIN | |
| narration | Yes | ||
| entity_name | No | Example Company |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It only states what the tool does ('Records a cash purchase') without disclosing side effects, required permissions, error conditions, or what happens after recording. For a mutation tool, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: a one-sentence purpose followed by an Args list. Every line adds value, with no wasted words or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite good parameter coverage, the description lacks usage guidelines and behavioral transparency. With no output schema or annotations, the tool is underspecifiedβusers are left unsure about when to use it versus siblings and what happens on execution.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description compensates for the schema's 0% coverage by providing brief but meaningful descriptions for all parameters, e.g., 'amount: Purchase amount (excluding tax)' and 'tax_code: Tax code to apply (default: GSTIN)'. However, it does not elaborate on allowed tax codes or the role of entity_name.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'Records a cash purchase (expense) transaction,' which clearly identifies the action and resource. It distinguishes from sibling tools like record_cash_sale by specifying 'cash purchase' and 'expense,' though it does not explicitly reference alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like record_supplier_bill or record_client_invoice. The description implies cash purchases but does not discuss exclusions, prerequisites, or context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
record_cash_saleA
Records a cash sale transaction.
Args:
narration: Description of the sale
amount: Sale amount (excluding tax)
quantity: Quantity of items sold
tax_code: Tax code to apply (default: GSTOUT)
entity_name: Entity name to use
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | ||
| quantity | No | ||
| tax_code | No | GSTOUT | |
| narration | Yes | ||
| entity_name | No | Example Company |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations present, the description carries the full burden of behavioral disclosure. It only states that it records a transaction, without mentioning side effects, required permissions, tax calculations, or whether a ledger entry is created. This minimal disclosure leaves significant behavioral ambiguity.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and well-structured, with a one-sentence purpose statement followed by a clean Args list. Every line is informative, with no redundant text or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with 5 parameters and no output schema, the description is adequate for basic invocation. However, it lacks usage context, such as typical scenarios or relationship to accounting workflow, and doesn't explain return values or error conditions. It is minimally complete but not rich.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides no parameter descriptions (0% coverage), but the description compensates by listing each argument with meaning: amount is 'excluding tax', tax_code has a default, and entity_name is described. This adds value beyond the schema's bare property names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Records a cash sale transaction' with a specific verb and resource. The term 'cash sale' distinguishes it from sibling tools like record_cash_purchase, record_client_invoice, and record_supplier_bill, making its purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention scenarios, prerequisites, or edge cases (e.g., when to use a cash sale instead of an invoice). Sibling names imply differences, but the description itself offers no explicit usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
record_client_invoiceA
Records a client invoice (credit sale) transaction.
Args:
narration: Description of the invoice
amount: Invoice amount (excluding tax)
quantity: Quantity of items invoiced
tax_code: Tax code to apply (default: GSTOUT)
entity_name: Entity name to use
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | ||
| quantity | No | ||
| tax_code | No | GSTOUT | |
| narration | Yes | ||
| entity_name | No | Example Company |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits. It only says 'Records a client invoice' without explaining side effects, reversibility, ledger impacts, or prerequisites. This is a significant gap for a financial transaction tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single focused sentence followed by a clean bulleted Args list. It front-loads the purpose and provides parameter details without any fluff or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the basic purpose and parameters, but lacks details on return values, ledger interactions, prerequisites, and the meaning of 'entity_name' is ambiguous. For a 5-parameter financial tool with no output schema, it is adequate but has gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has zero descriptions, so the Args section is the sole source. It adds value with 'Invoice amount (excluding tax)' and 'default: GSTOUT', but other fields like 'Quantity of items invoiced' and 'Entity name to use' are minimal restatements. Some semantics are added, but not comprehensively.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states exactly what it does: 'Records a client invoice (credit sale) transaction.' This uses a specific verb and resource, and the '(credit sale)' parenthetical distinguishes it from sibling tools like record_cash_sale and record_supplier_bill.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase '(credit sale)' clearly indicates this tool is for credit sales to clients, providing context for when to use it. It doesn't explicitly exclude cash sales or mention alternatives, but the sibling names and credit-sale framing make the usage context clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
record_supplier_billA
Records a supplier bill (credit purchase) transaction.
Args:
narration: Description of the bill
amount: Bill amount (excluding tax)
quantity: Quantity of items billed
tax_code: Tax code to apply (default: GSTIN)
entity_name: Entity name to use
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | ||
| quantity | No | ||
| tax_code | No | GSTIN | |
| narration | Yes | ||
| entity_name | No | Example Company |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only states the action ('Records a supplier bill') without disclosing side effects, required permissions, reversibility, or what happens after recording (e.g., ledger updates, accounts payable impact). This is sparse for a mutating transaction tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficient, with a single-sentence purpose followed by a bullet-style Args list. Every element adds value, and the format is front-loaded and scannable, making it easy for an agent to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the tool's purpose and all parameters, but lacks behavioral context (side effects, permissions) and any mention of return values. Given no annotations and no output schema, it is minimally complete but leaves gaps for an agent evaluating the tool's full impact.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage, and the description compensates by listing each parameter with meaningful explanations: 'amount' notes 'excluding tax', 'tax_code' shows default 'GSTIN', and 'entity_name' clarifies its role. However, 'entity_name' could be more specific (e.g., whether it refers to supplier or company), so it's not perfect.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Records a supplier bill') and specifies the nature of the transaction ('credit purchase'). This distinguishes it from sibling tools like record_cash_sale, record_cash_purchase, and record_client_invoice, which handle different transaction types.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for supplier bills (credit purchases) but does not explicitly mention alternatives or exclusions. The context is clear enough that an agent can infer when to use this tool versus cash sale/purchase tools, but explicit guidance would improve it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
7 tool updates
v0.1.0- First observed
create_ledger - First observed
echo - First observed
generate_profit_loss_report - First observed
record_cash_purchase - First observed
record_cash_sale - First observed
record_client_invoice - First observed
record_supplier_bill
TDQS
Each tool has a clearly distinct purpose: setup, reporting, and four specific transaction types. The echo tool is unrelated but not confusing, as it serves a generic utility function.
Most tools follow a consistent verb_noun pattern with snake_case (create_ledger, generate_profit_loss_report, record_*). The exception is 'echo', which is a simple verb, but this is a minor deviation.
Seven tools is well-scoped for an accounting ledger server: one setup tool, four transaction recording tools, one reporting tool, and one utility. Each tool earns its place.
The server covers setup, transaction recording, and reporting, but lacks fundamental operations like listing or retrieving transactions, editing, or deleting records. This creates a gap where agents cannot inspect or manage recorded data directly.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Headless API-first double-entry accounting & bookkeeping engine. 84 MCP tools over HTTP.
Hosted MCP server for Mini Accountant: invoices, expenses, customers, analytics, tax estimates.
MCP server for Modern Treasury β payment orders, transactions, counterparties and ledgers.
Foliora MCP for public discovery, account reads, and agent execution of human-approved changes.
Related MCP Servers
- FlicenseNot gradedqualityFmaintenanceProvides 667 specialized tools for financial and operational tasks, including fund accounting, compliance, DeFi, and tax management. It enables users to integrate extensive financial intelligence and automated workflows into any MCP-compatible client.1-
- AlicenseBqualityAmaintenanceEnables interaction with the QuickBooks Online Accounting API to manage customers, invoices, expenses, and payments through MCP-compatible clients. It supports comprehensive financial workflows and the generation of reports like Profit and Loss or Balance Sheets.1332Apache 2.0
- AlicenseNot gradedqualityBmaintenanceProvides double-entry accounting for AI agents, allowing creation of a chart of accounts, posting balanced journal entries, and pulling trial-balance and general-ledger reports via the Ledger API with x402 micropayments.MIT
- AlicenseNot gradedqualityAmaintenanceDouble-entry accounting ledger MCP server for autonomous agents that enables creating accounts, posting journal entries, and generating financial reports.MIT
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dougdaley/mcpAccountingDemo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server