fintech_company_deep_dive

Pack: fintech-intel · Endpoint: https://gateway.pipeworx.io/fintech-intel/mcp

Analyze a fintech company’s financials, risk profile, and regulatory history by stock ticker (e.g., “AAPL”). Returns SEC filings, income statements, stock quotes, consumer complaints, and company overview.

Parameters

NameTypeRequiredDescription
tickerstringyesStock ticker symbol (e.g., “AAPL”, “JPM”)
_avKeystringnoAlpha Vantage API key (optional, for stock/financial data)
_fredKeystringnoFRED API key (optional, for macro context)

Example call

Arguments

{
  "ticker": "SQ",
  "_avKey": "your-fintech-intel-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/fintech-intel/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fintech_company_deep_dive","arguments":{"ticker":"SQ","_avKey":"your-fintech-intel-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('fintech_company_deep_dive', {
  "ticker": "SQ",
  "_avKey": "your-fintech-intel-api-key"
});

More examples

{
  "ticker": "JPM",
  "_avKey": "your-fintech-intel-api-key",
  "_fredKey": "your-fintech-intel-api-key"
}

Response shape

Always returns: analysis, ticker, cik, sec_filings, stock_quote, company_overview, income_statement, consumer_complaints, macro_context

FieldTypeDescription
analysisstringAnalysis type identifier
tickerstringStock ticker symbol analyzed
cikobject | nullSEC CIK lookup result or null if unavailable
sec_filingsobject | nullSEC 10-K filings data or null if unavailable
stock_quoteobject | nullCurrent stock quote data or null if unavailable
company_overviewobject | nullCompany fundamentals and overview or null if unavailable
income_statementobject | nullIncome statement financials or null if unavailable
consumer_complaintsobject | nullCFPB consumer complaints or null if unavailable
macro_contextobject | nullMacro economic context or null if FRED key not provided
Full JSON Schema
{
  "type": "object",
  "properties": {
    "analysis": {
      "type": "string",
      "description": "Analysis type identifier"
    },
    "ticker": {
      "type": "string",
      "description": "Stock ticker symbol analyzed"
    },
    "cik": {
      "type": [
        "object",
        "null"
      ],
      "description": "SEC CIK lookup result or null if unavailable"
    },
    "sec_filings": {
      "type": [
        "object",
        "null"
      ],
      "description": "SEC 10-K filings data or null if unavailable"
    },
    "stock_quote": {
      "type": [
        "object",
        "null"
      ],
      "description": "Current stock quote data or null if unavailable"
    },
    "company_overview": {
      "type": [
        "object",
        "null"
      ],
      "description": "Company fundamentals and overview or null if unavailable"
    },
    "income_statement": {
      "type": [
        "object",
        "null"
      ],
      "description": "Income statement financials or null if unavailable"
    },
    "consumer_complaints": {
      "type": [
        "object",
        "null"
      ],
      "description": "CFPB consumer complaints or null if unavailable"
    },
    "macro_context": {
      "type": [
        "object",
        "null"
      ],
      "properties": {
        "fed_funds_rate": {
          "type": [
            "object",
            "null"
          ],
          "description": "Federal funds rate data"
        },
        "treasury_10y": {
          "type": [
            "object",
            "null"
          ],
          "description": "10-year Treasury yield data"
        }
      },
      "description": "Macro economic context or null if FRED key not provided"
    }
  },
  "required": [
    "analysis",
    "ticker",
    "cik",
    "sec_filings",
    "stock_quote",
    "company_overview",
    "income_statement",
    "consumer_complaints",
    "macro_context"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "fintech-intel": {
      "url": "https://gateway.pipeworx.io/fintech-intel/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026