원클릭으로
query
Execute SQL against the WACCY financial dataset to answer specific questions about the data.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Execute SQL against the WACCY financial dataset to answer specific questions about the data.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Show the balance sheet for the modelled periods — assets, liabilities, and equity.
Show the cash flow statement for the modelled periods — operating, investing, and financing activities.
Extract financial data from QuickBooks Online or SEC EDGAR and build the WACCY dataset.
Show the income statement (P&L) for the modelled periods — revenue, expenses, and net income.
Build a three-statement financial model (income statement, balance sheet, cash flow) from the extracted dataset.
Check whether waccy is installed and the MCP server is registered, and fix anything that's missing.
| name | query |
| description | Execute SQL against the WACCY financial dataset to answer specific questions about the data. |
Run arbitrary SQL queries against the financial dataset.
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. USDExample 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