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
| Name | Type | Required | Description |
|---|---|---|---|
ticker | string | yes | Stock ticker symbol (e.g., “AAPL”, “JPM”) |
_avKey | string | no | Alpha Vantage API key (optional, for stock/financial data) |
_fredKey | string | no | FRED 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
| Field | Type | Description |
|---|---|---|
analysis | string | Analysis type identifier |
ticker | string | Stock ticker symbol analyzed |
cik | object | null | SEC CIK lookup result or null if unavailable |
sec_filings | object | null | SEC 10-K filings data or null if unavailable |
stock_quote | object | null | Current stock quote data or null if unavailable |
company_overview | object | null | Company fundamentals and overview or null if unavailable |
income_statement | object | null | Income statement financials or null if unavailable |
consumer_complaints | object | null | CFPB consumer complaints or null if unavailable |
macro_context | object | null | Macro 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.