av_balance_sheet
Pack: alphavantage · Endpoint: https://gateway.pipeworx.io/alphavantage/mcp
Get annual and quarterly balance sheets for a symbol (e.g., “AAPL”). Returns total assets, liabilities, equity, cash, and debt.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Alpha Vantage API key |
symbol | string | yes | Stock ticker symbol (e.g., “AAPL”, “TSLA”) |
Example call
Arguments
{
"_apiKey": "your-alphavantage-api-key",
"symbol": "AAPL"
}
curl
curl -X POST https://gateway.pipeworx.io/alphavantage/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"av_balance_sheet","arguments":{"_apiKey":"your-alphavantage-api-key","symbol":"AAPL"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('av_balance_sheet', {
"_apiKey": "your-alphavantage-api-key",
"symbol": "AAPL"
});
More examples
{
"_apiKey": "your-alphavantage-api-key",
"symbol": "TSLA"
}
Response shape
Always returns: symbol, annual_reports, quarterly_reports
| Field | Type | Description |
|---|---|---|
symbol | string | Stock ticker symbol |
annual_reports | array | Annual balance sheets |
quarterly_reports | array | Quarterly balance sheets (up to 8) |
Full JSON Schema
{
"type": "object",
"properties": {
"symbol": {
"type": "string",
"description": "Stock ticker symbol"
},
"annual_reports": {
"type": "array",
"description": "Annual balance sheets",
"items": {
"type": "object",
"properties": {
"fiscal_date": {
"type": [
"string",
"null"
],
"description": "Fiscal date ending"
},
"reported_currency": {
"type": [
"string",
"null"
],
"description": "Currency code"
},
"total_assets": {
"type": [
"string",
"null"
],
"description": "Total assets"
},
"total_current_assets": {
"type": [
"string",
"null"
],
"description": "Total current assets"
},
"cash_and_equivalents": {
"type": [
"string",
"null"
],
"description": "Cash and cash equivalents"
},
"total_liabilities": {
"type": [
"string",
"null"
],
"description": "Total liabilities"
},
"total_current_liabilities": {
"type": [
"string",
"null"
],
"description": "Total current liabilities"
},
"long_term_debt": {
"type": [
"string",
"null"
],
"description": "Long-term debt"
},
"total_shareholder_equity": {
"type": [
"string",
"null"
],
"description": "Total shareholder equity"
},
"retained_earnings": {
"type": [
"string",
"null"
],
"description": "Retained earnings"
},
"common_stock_shares_outstanding": {
"type": [
"string",
"null"
],
"description": "Common stock shares outstanding"
}
}
}
},
"quarterly_reports": {
"type": "array",
"description": "Quarterly balance sheets (up to 8)",
"items": {
"type": "object",
"properties": {
"fiscal_date": {
"type": [
"string",
"null"
],
"description": "Fiscal date ending"
},
"reported_currency": {
"type": [
"string",
"null"
],
"description": "Currency code"
},
"total_assets": {
"type": [
"string",
"null"
],
"description": "Total assets"
},
"total_current_assets": {
"type": [
"string",
"null"
],
"description": "Total current assets"
},
"cash_and_equivalents": {
"type": [
"string",
"null"
],
"description": "Cash and cash equivalents"
},
"total_liabilities": {
"type": [
"string",
"null"
],
"description": "Total liabilities"
},
"total_current_liabilities": {
"type": [
"string",
"null"
],
"description": "Total current liabilities"
},
"long_term_debt": {
"type": [
"string",
"null"
],
"description": "Long-term debt"
},
"total_shareholder_equity": {
"type": [
"string",
"null"
],
"description": "Total shareholder equity"
},
"retained_earnings": {
"type": [
"string",
"null"
],
"description": "Retained earnings"
},
"common_stock_shares_outstanding": {
"type": [
"string",
"null"
],
"description": "Common stock shares outstanding"
}
}
}
}
},
"required": [
"symbol",
"annual_reports",
"quarterly_reports"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"alphavantage": {
"url": "https://gateway.pipeworx.io/alphavantage/mcp"
}
}
}
See Getting Started for client-specific install steps.