A powerful MCP server built with NitroStack
Add via Cursor Settings UI (Settings > Features > MCP > Add New MCP Server):
{
"mcpServers": {
// your other mcp servers
"investiq-mcp": {
"url": "https://product-studio-6-alphastack-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"
}
}
}
Connect remote tools directly via Claude's Web UI:
Configure custom tools directly via ChatGPT's Web UI:
Add the following configuration block under mcpServers in your Antigravity configuration file (~/.gemini/config/mcp_config.json):
{
"mcpServers": {
// your other mcp servers
"investiq-mcp": {
"serverUrl": "https://product-studio-6-alphastack-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"
}
}
}
Add the following configuration block to your Codex configuration file (~/.codex/config.toml):
[mcp_servers.investiq-mcp] url = "https://product-studio-6-alphastack-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"
Connect directly using the Server-Sent Events endpoint:
https://product-studio-6-alphastack-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp
Get the current real-time stock quote for a ticker symbol: current price, open, high, low, previous close, change, and market session status. Tries Finnhub first, then falls back to Yahoo Finance for symbols Finnhub cannot serve (e.g. non-US exchanges like NSE/BSE India). This is the natural first step when analyzing any stock — call it before get_company_profile, get_basic_financials, or get_company_news.
Get company background for a ticker symbol: name, sector/industry, market cap, exchange, country, website, and IPO date. Tries Finnhub first, then falls back to Yahoo Finance for symbols Finnhub cannot serve (logo and IPO date are only available from Finnhub and will be empty on fallback). Use this alongside get_stock_quote to understand what a company does before assessing its financials or news.
Get key fundamental ratios for a ticker symbol: P/E ratio, EPS, revenue growth, profit margin, return on equity, debt-to-equity, beta, 52-week range, and analyst recommendation trend. Tries Finnhub first, then falls back to Yahoo Finance for symbols Finnhub cannot serve. Feed this output into analyze_stock alongside quote, profile, and news data.
Get the latest news articles for a ticker symbol. Tries Finnhub first, then falls back to Yahoo Finance for symbols Finnhub cannot serve (e.g. non-US exchanges). Defaults to the last 14 days. Pass the returned articles into summarize_news to classify sentiment.
Classify a set of news articles (as returned by get_company_news) into positive, negative, and neutral signals using deterministic keyword analysis, plus an overall tone and summary. Feed the result into analyze_stock.
Combine the outputs of get_stock_quote, get_company_profile, get_basic_financials, and summarize_news into a deterministic, explainable analysis: strengths, weaknesses, risks, opportunities, and an overall bullish/neutral/bearish sentiment with a numeric score. Every factor is a traceable rule applied to the supplied data — this tool does not give financial advice. Feed the result into generate_investment_report.
Assemble the final structured investment report from the outputs of get_stock_quote, get_company_profile, get_basic_financials, summarize_news, and analyze_stock. This is the last step of the orchestration chain — call it only after all five upstream tools have run for the same symbol. Returns both structured fields (for the dashboard widget) and a ready-to-display markdown report with a Bullish/Neutral/Bearish recommendation and reasoning. This is not financial advice.