Investiq Mcp

v1.0.0

A powerful MCP server built with NitroStack

Connection Setup

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:

Add custom connector BETA
Connect Claude to your data and tools. Learn more about connectors or get started with pre-built ones.
Advanced settings
Only use connectors from developers you trust. Anthropic does not control which tools developers make available and cannot verify that they will work as intended or that they won't change.

Configure custom tools directly via ChatGPT's Web UI:

New App
PNG only. Best results at 256 x 256 px or larger. Max file size: 10 KB
Custom MCP servers introduce risk. Learn more
OpenAI hasn't reviewed this MCP server. Attackers may attempt to steal your data or trick the model into taking unintended actions, including destroying data.

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
Available Tools
get_stock_quote

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_profile

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_basic_financials

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_company_news

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.

summarize_news

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.

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.

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.