cygkichi/jquants-free-mcp-server
If you are the rightful owner of jquants-free-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The J-Quants Free MCP server provides access to the free version of the J-Quants API, allowing users to retrieve financial data and stock quotes.
Tools
Functions exposed to the LLM to take actions
search_company
Search for listed stocks by company name.
Args: query (str): Query parameter for searching company names. Specify a string contained in the company name. Example: Specifying "トヨタ" will search for stocks with "トヨタ" in the company name. Must be in Japanese. limit (int, optional): Maximum number of results to retrieve. Defaults to 10. start_position (int, optional): The starting position for the search. Defaults to 0.
Returns: str: API response text
get_daily_quotes
Retrieve daily stock price data for a specified stock code. The available data spans from 2 years prior to today up until 12 weeks ago.
Args: code (str): Specify the stock code. Example: "72030" (トヨタ自動車) from_date (str): Specify the start date. Example: "2023-01-01" must be in YYYY-MM-DD format to_date (str): Specify the end date. Example: "2023-01-31" must be in YYYY-MM-DD format limit (int, optional): Maximum number of results to retrieve. Defaults to 10. start_position (int, optional): The starting position for the search. Defaults to 0.
Returns: str: API response text
get_financial_statements
Retrieve financial statements for a specified stock code. The available data spans from 2 years prior to today up until 12 weeks ago. You can obtain quarterly financial summary reports and disclosure information regarding revisions to performance and dividend information (mainly numerical data) for listed companies.
Args: code (str): Specify the stock code. Example: "72030" (トヨタ自動車) limit (int, optional): Maximum number of results to retrieve. Defaults to 10. start_position (int, optional): The starting position for the search. Defaults to 0.
Prompts
Interactive templates invoked by user choice
No prompts
Resources
Contextual data attached and managed by the client