Fintech Intel

live Utility

FinTech Intel MCP — Compound tools that chain SEC, CFPB, FDIC,

3 tools
0ms auth
free tier 50 calls/day

Tools

fintech_company_deep_dive

Complete company financial analysis in one call — SEC filings (10-K), stock quote, company overview, income statement, consumer complaints, and macro rates. Provide a stock ticker.

No parameters required.

Try it
fintech_bank_health_check

Bank health assessment — FDIC institution lookup, financials, recent industry failures, consumer complaints, and industry summary. Works with bank name (e.g., "Silicon Valley Bank", "JPMorgan Chase").

No parameters required.

Try it
fintech_market_snapshot

Financial market conditions dashboard — CFPB complaint trends, FDIC banking industry summary, and optionally FRED macro rates (fed funds, 10Y/2Y treasury, yield curve, high yield spread, VIX).

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/fintech-intel/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/fintech-intel/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"fintech_company_deep_dive","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("fintech_company_deep_dive", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("fintech intel mcp — compound tools that chain sec, cfpb, fdic,");