av_income_statement
Pack: alphavantage · Endpoint: https://gateway.pipeworx.io/alphavantage/mcp
Get annual and quarterly income statements for a symbol (e.g., “AAPL”). Returns revenue, gross profit, operating income, net income, and EBITDA.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Alpha Vantage API key |
symbol | string | yes | Stock ticker symbol (e.g., “AAPL”, “MSFT”) |
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_income_statement","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_income_statement', {
"_apiKey": "your-alphavantage-api-key",
"symbol": "AAPL"
});
More examples
{
"_apiKey": "your-alphavantage-api-key",
"symbol": "MSFT"
}
Response shape
Always returns: symbol, annual_reports, quarterly_reports
| Field | Type | Description |
|---|---|---|
symbol | string | Stock ticker symbol |
annual_reports | array | Annual income statements |
quarterly_reports | array | Quarterly income statements (up to 8) |
Full JSON Schema
{
"type": "object",
"properties": {
"symbol": {
"type": "string",
"description": "Stock ticker symbol"
},
"annual_reports": {
"type": "array",
"description": "Annual income statements",
"items": {
"type": "object",
"properties": {
"fiscal_date": {
"type": [
"string",
"null"
],
"description": "Fiscal date ending"
},
"reported_currency": {
"type": [
"string",
"null"
],
"description": "Currency code"
},
"total_revenue": {
"type": [
"string",
"null"
],
"description": "Total revenue"
},
"cost_of_revenue": {
"type": [
"string",
"null"
],
"description": "Cost of revenue"
},
"gross_profit": {
"type": [
"string",
"null"
],
"description": "Gross profit"
},
"operating_expenses": {
"type": [
"string",
"null"
],
"description": "Operating expenses"
},
"operating_income": {
"type": [
"string",
"null"
],
"description": "Operating income"
},
"net_income": {
"type": [
"string",
"null"
],
"description": "Net income"
},
"ebitda": {
"type": [
"string",
"null"
],
"description": "EBITDA"
},
"interest_expense": {
"type": [
"string",
"null"
],
"description": "Interest expense"
},
"income_tax_expense": {
"type": [
"string",
"null"
],
"description": "Income tax expense"
},
"research_and_development": {
"type": [
"string",
"null"
],
"description": "Research and development expense"
}
}
}
},
"quarterly_reports": {
"type": "array",
"description": "Quarterly income statements (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_revenue": {
"type": [
"string",
"null"
],
"description": "Total revenue"
},
"cost_of_revenue": {
"type": [
"string",
"null"
],
"description": "Cost of revenue"
},
"gross_profit": {
"type": [
"string",
"null"
],
"description": "Gross profit"
},
"operating_expenses": {
"type": [
"string",
"null"
],
"description": "Operating expenses"
},
"operating_income": {
"type": [
"string",
"null"
],
"description": "Operating income"
},
"net_income": {
"type": [
"string",
"null"
],
"description": "Net income"
},
"ebitda": {
"type": [
"string",
"null"
],
"description": "EBITDA"
},
"interest_expense": {
"type": [
"string",
"null"
],
"description": "Interest expense"
},
"income_tax_expense": {
"type": [
"string",
"null"
],
"description": "Income tax expense"
},
"research_and_development": {
"type": [
"string",
"null"
],
"description": "Research and development expense"
}
}
}
}
},
"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.