Query Financial Data
SkillDatabases & dataExecute SQL against the WACCY financial dataset to answer specific questions about the data.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Query Financial Data skill
What this skill tells your AI
The instructions your AI receives, as published by decisionnerd/waccy in .agents/skills/query/SKILL.md and read by ahel’s review.
Run arbitrary SQL queries against the financial dataset.
When to Use
- "Query the financial data"
- "How much revenue did we have in 2024?"
- "Show me all expense accounts"
- "What are the top expense categories?"
Steps
Use the query MCP tool with a SQL statement. The primary table is records with columns:
source— data source (quickbooks, edgar)account_id— standard account identifieraccount_name— display namestatement_kind— income_statement / balance_sheet / cash_flow_statementperiod_label— e.g. 2024, 2024-Q1amount— numeric valuecurrency— e.g. USD
Example queries:
-- Total revenue by period
SELECT period_label, SUM(amount) as revenue
FROM records WHERE account_id = 'revenue'
GROUP BY period_label ORDER BY period_label
-- All expense accounts
SELECT account_name, SUM(amount) as total
FROM records WHERE statement_kind = 'income_statement'
AND account_type = 'expense'
GROUP BY account_name ORDER BY total DESC
Signals
- GitHub stars
- 23
- Forks
- 2
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
query-decisionnerd- Source
- github.com/decisionnerd/waccy