dingdawg-finance-agent
Click on "Deploy 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., "@dingdawg-finance-agentanalyze my Q3 financial ratios"
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.
dingdawg-finance-agent
Breakthrough financial analysis bottlenecks. AI finance that learns YOUR business metrics.
AI-powered financial analysis, budget forecasting, compliance checking, expense categorization, and risk assessment. Free tier runs ratio analysis locally. Paid tier provides LLM-powered financial modeling with SOX and GAAP compliance tracking. Every action is governed and receipted.
For AI Assistants
This MCP server returns structured JSON for seamless integration:
Financial ratios (liquidity, profitability, solvency) with industry benchmarks
SOX/GAAP compliance status with specific control gap identification
Governance receipt on every call (audit-ready)
Chain-ready:
financial_analysisfor baseline ->budget_forecastfor projections ->compliance_checkfor SOX/GAAP ->expense_categorizefor line items ->risk_assessmentfor exposure
Composable with any MCP client: Claude Code, Cursor, VS Code, ChatGPT Desktop, Windsurf.
Related MCP server: financeskills
Install
npx dingdawg-finance-agentClaude Code
claude mcp add finance -- npx dingdawg-finance-agentCursor
Add to .cursor/mcp.json:
{"mcpServers": {"finance": {"command": "npx", "args": ["dingdawg-finance-agent"], "env": {"DINGDAWG_API_KEY": "your-key"}}}}Full Stack (all 13 agents)
npx dingdawg-setupTools
Tool | Free Tier | Paid Tier |
| 10/day, basic ratio analysis | Unlimited, LLM-powered with industry benchmarking |
| 5/day, linear projection | Unlimited, AI-powered multi-scenario modeling |
| 5/day, checklist-based SOX/GAAP | Unlimited, deep compliance with control gap analysis |
| 20/day, rule-based categorization | Unlimited, AI-powered with anomaly detection |
| 5/day, basic risk scoring | Unlimited, Monte Carlo simulation with risk factors |
Pricing
Free: 10 analyses/day, basic ratios
Pro: $49/mo, 100 calls/day, AI-powered deep analysis
Pay-as-you-go: $0.25/call, no commitment
Get API key: https://dingdawg.com/developers
Governed
Every call is receipted and auditable. Financial analyses reference GAAP standards and SOX control requirements. Budget forecasts include methodology disclosure. Risk assessments include confidence intervals and assumption documentation.
Support
Available Tools
5 toolsbudget_forecastARead-only
Generate AI-powered budget forecasts with scenario analysis. Requires DINGDAWG_API_KEY for LLM-powered projections.
| Name | Required | Description | Default |
|---|---|---|---|
| assumptions | No | Growth assumptions or market conditions | |
| expense_history | Yes | Historical expense data (CSV or description) | |
| forecast_months | No | Months to forecast (default: 12) | |
| revenue_history | Yes | Historical revenue data (CSV or description) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint annotation is true, and the description does not contradict it—'generate' implies computation rather than mutation. The description adds valuable behavioral context by stating the requirement for DINGDAWG_API_KEY and that projections are LLM-powered, which goes beyond the annotation's read-only hint.
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?
A single, compact sentence that delivers the core purpose and a critical requirement (API key) without fluff. It is front-loaded with the action and object, making it instantly scannable.
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 forecast tool with 4 parameters (2 required) and no output schema, the description covers the essence: purpose, scenario analysis, and the external dependency. It does not describe the output format or error scenarios, but given the schema handles parameters and the read-only annotation covers side effects, the information is largely sufficient for an agent to invoke it 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?
Schema description coverage is 100%, so each parameter already has a description (e.g., 'Historical revenue data (CSV or description)'). The tool description adds little about how parameters relate to scenario analysis (e.g., assumptions), but it does tie the whole tool to AI-powered projections. At this coverage level, a baseline of 3 is appropriate; the description doesn't enhance parameter understanding beyond the schema.
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 a specific action (generate) and resource (budget forecasts), and explicitly mentions scenario analysis, which clearly distinguishes it from siblings like financial_analysis or risk_assessment. The verb and object are 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 like 'use when you need a forecast' or exclude cases like 'not for historical analysis.' The distinction from siblings is implicit but not explicit, leaving the agent to infer use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
compliance_checkARead-only
Check financial compliance against SOX, GAAP, IFRS, or AML regulations. Requires DINGDAWG_API_KEY for LLM-powered analysis.
| Name | Required | Description | Default |
|---|---|---|---|
| frameworks | No | Frameworks to check against (SOX, GAAP, IFRS, AML) | |
| process_description | Yes | Financial process or system to check |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint: true, so the tool is known to be read-only. The description adds that it requires DINGDAWG_API_KEY and uses LLM-powered analysis, providing some behavioral context beyond the annotation. However, it does not disclose what the output looks like, whether any data is sent to external LLM services, or any other side effects. Given the annotation covers the main safety trait, the description adds modest value, warranting a 3.
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 extremely concise at two sentences, with the primary purpose front-loaded and the authentication requirement stated separately. Every word serves a purpose; no filler or redundant information. This is an example of effective, efficient communication.
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 compliance check tool, the description lacks information about output format, success criteria, or error handling. There is no output schema, so the agent does not know what the tool returns. It also does not clarify how the LLM analysis affects the result or what happens if the API key is missing. Given the tool's complexity (multi-framework, LLM-dependent), this description is minimally adequate but leaves gaps in expected behavior.
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 description coverage is 100%: both 'frameworks' and 'process_description' have descriptive text. The description adds no additional meaning beyond what the schema already provides—it merely restates the framework list. Since the schema handles parameter documentation, the description offers no added value for parameters, aligning with the baseline score of 3.
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: 'Check financial compliance against SOX, GAAP, IFRS, or AML regulations.' This is a specific verb (check) with a defined resource (financial compliance) and a clear scope (those four frameworks). It is easily distinguishable from sibling tools like financial_analysis or risk_assessment, which focus on different aspects of financial processes.
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 gives no explicit guidance on when to use this tool versus its siblings. It only describes what it does, but does not mention when it is the appropriate choice (e.g., when needing to verify compliance) or when to choose an alternative (e.g., risk_assessment for risk-related checks). This leaves the agent to infer usage context, which is inadequate given the presence of similar tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
expense_categorizeBRead-only
Free AI expense categorization with tax deduction flags. Deep LLM-powered analysis and optimization with API key.
| Name | Required | Description | Default |
|---|---|---|---|
| expenses | Yes | Expense data — CSV, JSON, or free-text list | |
| tax_year | No | Tax year for deduction analysis |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No contradiction with annotations — readOnlyHint=true is consistent with a categorization/transform operation, so the bar is lowered. But the description adds little beyond the annotation: 'free' paired with 'with API key' is ambiguous (does the caller need to supply a key or does the tool cost nothing?), and 'optimization' is undefined. The API-key requirement is a behavioral trait worth clarifying that the description fails to make explicit.
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?
Two sentences, appropriately short. However, there is redundancy ('AI expense categorization' and 'LLM-powered analysis' say nearly the same thing), and the 'Free... with API key' pairing is confusing enough to warrant clarification. It is not wasteful, but the ambiguity costs it a higher score.
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?
Adequate for a simple 2-param tool with schema covering both parameters and annotations covering the read-only safety profile. But there is no output schema and the description never states what the tool returns (e.g., categories assigned, deduction flags), leaving a meaningful gap for an agent deciding whether the result is usable. The vague 'optimization' promise further weakens completeness.
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 100%, so the baseline is 3. The schema already documents both parameters well, including the formats for 'expenses' (CSV, JSON, free-text list). The description's mention of 'tax deduction flags' loosely ties to the tax_year parameter, but it adds no concrete syntax or behavior beyond what the schema provides.
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?
States a specific verb and resource ('categorize expenses') with the tax deduction flag differentiator, which is distinct enough from the sibling tools (compliance_check, financial_analysis, etc.). However, 'Deep LLM-powered analysis and optimization' is vague and bleeds into financial_analysis territory, muddying the boundary slightly.
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 on when to use this tool versus the siblings. It does not name alternatives, state exclusions, or describe scenarios where another tool would be preferred. The phrase 'free... with API key' hints at cost conditions but does not clarify choice criteria. Usage context is left entirely to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
financial_analysisARead-only
Free AI financial ratio analysis. Returns health score, key ratios, and red flags. Deep LLM-powered modeling and recommendations available with API key.
| Name | Required | Description | Default |
|---|---|---|---|
| cash | No | Cash and equivalents | |
| assets | No | Total assets | |
| revenue | No | Annual revenue | |
| expenses | No | Annual expenses | |
| description | No | Free-text financial situation description | |
| liabilities | No | Total liabilities |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description adds value by specifying the return payload (health score, key ratios, red flags) and the existence of an API-key-gated deep modeling tier. This goes beyond the annotation and gives the agent a clear picture of what the tool does and its limitations, though it does not detail data handling or edge cases.
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?
Two sentences with no fluff. The first sentence front-loads the core purpose and output, and the second adds the API-key distinction. Every word earns its place, and the structure is scannable for an agent.
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?
Given that all six parameters are optional and there is no output schema, the description communicates the main return values and the free vs. paid differentiation. However, it does not specify whether any parameters must be supplied, how the analysis weighs inputs, or what happens if no data is provided. This is a minor gap for a tool that accepts all-optional inputs, but the core operational context is clear enough for an agent to invoke it.
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 description coverage is 100%, so the schema already explains each parameter (cash, assets, revenue, expenses, liabilities, description). The tool description adds no additional parameter semantics, such as how to combine the numeric fields or the role of the free-text description. Baseline 3 is appropriate when the schema carries the full burden.
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 a specific verb ('financial ratio analysis') and resource ('financial ratios'), and clearly announces the output ('health score, key ratios, red flags'). It distinguishes itself from siblings like compliance_check or risk_assessment by focusing on ratio-based financial health, making the tool's 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 implies use for ratio-based financial analysis but provides no explicit when-to-use versus alternatives (e.g., budget_forecast for budgeting, risk_assessment for risk). It also fails to clarify whether certain parameters are required or how the free tier differs from the API-key tier in terms of analysis depth, leaving the selection context vague.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
risk_assessmentARead-only
AI-powered financial risk assessment for portfolios, investments, or business decisions. Requires DINGDAWG_API_KEY.
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | Investment, portfolio, or business description to assess | |
| time_horizon | No | Investment time horizon | |
| risk_tolerance | No | Risk tolerance |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, so the tool is read-only. The description adds the DINGDAWG_API_KEY requirement, which is essential behavioral context beyond annotations. It also notes the AI-powered nature, implying non-deterministic output. However, it does not mention potential latency, cost, or error behavior, so not a 5.
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?
Two concise sentences: the first states the core purpose, the second adds a critical prerequisite. No fluff, front-loaded with the most important info. Perfectly sized.
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 tool with 3 parameters and no output schema, the description does not explain what the result looks like (score, rating, report). The agent may need to guess. While purpose is clear, return format is absent. Considering annotations cover side effects, a 3 is fair.
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 description coverage is 100%, with each parameter having a clear description. The tool description adds no extra parameter semantics; it only repeats the general purpose. Baseline 3 is appropriate since the schema carries the load.
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 performs 'financial risk assessment' for portfolios, investments, or business decisions. It uses a specific verb (assess) and resource (financial risk), distinct from siblings like compliance_check or budget_forecast. The target domain 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?
The description implies when to use (when risk assessment is needed) but does not explicitly contrast with siblings or state exclusions. No guidance on when not to use it or alternatives. It does note the API key requirement, which is a prerequisite, but that's more behavioral than usage guidance.
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.
5 tool updates
v2.0.7- First observed
budget_forecast - First observed
compliance_check - First observed
expense_categorize - First observed
financial_analysis - First observed
risk_assessment
TDQS
Scored across 5 tools
Each tool targets a distinct financial domain: compliance (regulatory rules), analysis (ratio health), forecasting (budget scenarios), categorization (expense flags), and risk assessment (portfolio/business risk). No two tools overlap in purpose, and their descriptions reinforce clear boundaries.
All tool names follow a consistent noun_verb/verb_noun pattern using snake_case: compliance_check, financial_analysis, budget_forecast, expense_categorize, risk_assessment. The pattern is predictable and consistent, matching the style of well-organized MCP servers.
With 5 tools, the server is well-scoped for a financial agent, covering common user requests without being bloated or minimal. Each tool has a clear role, and the count is squarely within the recommended range for a focused server.
The tool surface covers the major financial workflows an agent might need: compliance verification, ratio analysis, forecasting, expense tracking, and risk assessment. Minor gaps exist, such as no dedicated tool for tax estimation or investment portfolio management, but these are beyond the core scope and agents can typically work around them.
Maintenance
Related MCP Connectors
Connect AI agents to financial institution origination, analytics, and compliance workflows.
Capture receipts, scan Gmail, analyze spending, and create reviewed reports from AI assistants.
Provide AI assistants with real-time access to official SEC EDGAR filings and financial data. Enab…
Structured financial modeling for AI agents: build, version, audit models, export to Excel.
Related MCP Servers
- FlicenseNot gradedqualityFmaintenanceAn AI-powered financial management engine that enables budgeting, smart expense tracking, and affordability analytics via the Model Context Protocol. It allows AI assistants to interact with financial data through natural language for tasks like category detection, bulk expense ingestion, and budget impact predictions.1-
- AlicenseCqualityCmaintenanceAI-powered skills for financial professionals. Comprehensive collection of finance, accounting, audit, and compliance skills for AI agents. IFRS/GAAP compliant with industry-specific applications.10020MIT
- AlicenseAqualityAmaintenanceEnables AI assistants to securely manage and analyze personal finances through natural language, with full control over data via a private PostgreSQL database.12MIT
- FlicenseBqualityBmaintenanceEnables AI assistants to perform financial reconciliation with a deterministic proof engine: intake files, match transactions, verify proofs, resolve exceptions, and sign off on balanced journals under the user's authority.21-