fintech_market_snapshot
Pack: fintech-intel · Endpoint: https://gateway.pipeworx.io/fintech-intel/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/fintech_market_snapshot for the schema, then POST the same URL with its arguments for the data.
Check current financial market conditions. Returns complaint trends, banking sector summary, fed funds rate, Treasury yields, yield curve, credit spreads, and VIX volatility.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_fredKey | string | no | FRED API key (optional, for macro rates) |
Example call
Arguments
{
"_fredKey": "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_market_snapshot","arguments":{"_fredKey":"your-fintech-intel-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fintech_market_snapshot', {
"_fredKey": "your-fintech-intel-api-key"
});
Response shape
Always returns: analysis, complaint_leaders, complaint_by_product, fdic_industry
| Field | Type | Description |
|---|---|---|
analysis | string | Analysis type identifier |
complaint_leaders | object | null | Top companies by complaint volume or null if unavailable |
complaint_by_product | object | null | Complaint breakdown by financial product or null if unavailable |
fdic_industry | object | null | FDIC banking industry summary or null if unavailable |
macro_rates | object | null | Macro economic rates and spreads or null if FRED key not provided |
Full JSON Schema
{
"type": "object",
"properties": {
"analysis": {
"type": "string",
"description": "Analysis type identifier"
},
"complaint_leaders": {
"type": [
"object",
"null"
],
"description": "Top companies by complaint volume or null if unavailable"
},
"complaint_by_product": {
"type": [
"object",
"null"
],
"description": "Complaint breakdown by financial product or null if unavailable"
},
"fdic_industry": {
"type": [
"object",
"null"
],
"description": "FDIC banking industry summary or null if unavailable"
},
"macro_rates": {
"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"
},
"treasury_2y": {
"type": [
"object",
"null"
],
"description": "2-year Treasury yield"
},
"yield_curve_spread": {
"type": [
"object",
"null"
],
"description": "10Y-2Y yield curve spread"
},
"high_yield_spread": {
"type": [
"object",
"null"
],
"description": "High yield credit spread"
},
"vix": {
"type": [
"object",
"null"
],
"description": "VIX volatility index"
}
},
"description": "Macro economic rates and spreads or null if FRED key not provided"
}
},
"required": [
"analysis",
"complaint_leaders",
"complaint_by_product",
"fdic_industry"
]
}
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.