Loading...

FinData is an open-source MCP server providing access to financial data from various providers like Tushare, enabling AI applications to retrieve financial data.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
FinData is an open-source MCP server providing access to financial data from various providers like Tushare, enabling AI applications to retrieve financial data.
FinData is relatively safe for retrieving financial data, but the security of the API token is critical. Ensure the API token is stored securely and access is limited to authorized users. Misconfiguration of the data provider can lead to inaccurate results, but does not pose a direct security risk.
Performance is dependent on the data provider's API response times and network latency. Optimize data retrieval queries to minimize latency.
Cost depends on the data provider's pricing model and API usage. Monitor API usage to avoid unexpected costs.
{
"mcpServers": {
"finData": {
"command": "uv",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/finData-mcp-server/src/findata",
"run",
"server.py"
],
"env": {
"DATA_API_TOKEN": "", // API Token for accessing data provider
"PROVIDER": "tushare" // Specified data provider
}
}
}
}DATA_API_TOKENPROVIDERdailyRetrieves unadjusted daily stock market data.
Read-only access to market data.
stock_basicGets basic information about stocks, including name and code.
Read-only access to stock information.
stock_companyRetrieves basic information about listed companies.
Read-only access to company information.
incomeGets company income statement data.
Read-only access to income statement data.
balancesheetGets company balance sheet data.
Read-only access to balance sheet data.
cashflowGets company cash flow statement data.
Read-only access to cash flow statement data.
shibor_lprRetrieves Loan Prime Rate (LPR) data.
Read-only access to LPR data.
cn_gdpRetrieves Gross Domestic Product (GDP) data.
Read-only access to GDP data.
cn_cpiRetrieves Consumer Price Index (CPI) data.
Read-only access to CPI data.
cn_ppiRetrieves Producer Price Index (PPI) data.
Read-only access to PPI data.
cn_mRetrieves Money Supply data.
Read-only access to Money Supply data.
sf_monthRetrieves Social Financing data.
Read-only access to Social Financing data.
cn_pmiRetrieves Purchasing Managers' Index (PMI) data.
Read-only access to PMI data.
bak_basicRetrieves fundamental data for specific stocks within a given time range.
Read-only access to fundamental stock data.
API Key
hybrid
FinData is relatively safe for retrieving financial data, but the security of the API token is critical. Ensure the API token is stored securely and access is limited to authorized users. Misconfiguration of the data provider can lead to inaccurate results, but does not pose a direct security risk.
Autonomy is limited by the read-only nature of the data retrieval tools. No destructive actions are possible.
Production Tip
Monitor data provider availability and API usage to ensure reliable data retrieval.
Currently, Tushare is supported. More providers may be added in the future.
The API token is configured via the DATA_API_TOKEN environment variable.
You can retrieve market data, fundamental data, financial data, and macroeconomic data, depending on the data provider.
Data latency depends on the data provider. Check the data provider's documentation for details.
Error handling depends on the MCP client implementation. Check the client's documentation for details.
Yes, you can configure multiple MCP clients to use the FinData server.
You can contribute by submitting pull requests on GitHub.