financial-statements

financial-statements

3.5

The Financial Statements MCP Server provides standardized financial data for global companies, including balance sheets, income statements, and cash flow statements.

The Financial Statements MCP Server is a robust solution for accessing standardized financial data for global companies. This server provides comprehensive access to companies' balance sheets, income statements, and cash flow statements, with historical data available for the past five years. The data is sourced from original filings, ensuring accuracy and reliability, and is accessible through intuitive endpoints.

Features

  • Balance Sheet Statement: Retrieve detailed balance sheet statements for companies, with all figures presented in thousands.
  • Income Statement: Access income statements to evaluate a company's profitability over a specified period.
  • Cash Flow Statement: Obtain cash flow statements to understand the cash inflows and outflows from operating, investing, and financing activities.

MCP Tools

  • balance_sheet_statement: Get company balance sheet statement by year. All numbers are in thousands.
  • cash_flow_statement: Get company cash flow statement by year. Includes trailing twelve months (ttm) data. All numbers are in thousands.
  • income_statement: Get company income statement by year. Includes trailing twelve months (ttm) data. All numbers are in thousands.

Usage with Different Platforms

python

python
import requests

url = 'https://api.financialstatements.com/v1/balance_sheet_statement'
params = {'ticker': 'AAPL'}
response = requests.get(url, params=params)
data = response.json()
print(data)

nodejs

javascript
const axios = require('axios');

axios.get('https://api.financialstatements.com/v1/balance_sheet_statement', {
  params: {
    ticker: 'AAPL'
  }
})
.then(response => {
  console.log(response.data);
})
.catch(error => {
  console.error(error);
});

Frequently Asked Questions

What is the data source for the financial statements?

The data is sourced from original company filings, ensuring accuracy and reliability.

How often is the data updated?

The data is updated annually, with the latest available figures from the most recent fiscal year.