Cfpb
live DataCFPB MCP — Consumer Financial Protection Bureau complaint database (free, no auth)
Tools
cfpb_search_complaints Search the CFPB consumer complaint database. Filter by keyword, company, product category, and date range. Returns complaint narratives, company responses, and resolution status.
No parameters required.
Try it
cfpb_company_complaints Get recent consumer complaints for a specific company, sorted by newest first. Returns complaint details and company response information.
No parameters required.
Try it
cfpb_get_complaint Get full details for a single consumer complaint by its complaint ID number.
No parameters required.
Try it
cfpb_top_companies Get the companies with the most consumer complaints in a given date range. Useful for identifying which companies receive the most complaints.
No parameters required.
Try it
cfpb_product_breakdown Get complaint counts broken down by product category. Optionally filter by company and/or date range.
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.
curl -X POST https://gateway.pipeworx.io/cfpb/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/cfpb/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"cfpb_search_complaints","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("cfpb_search_complaints", {}); // Or ask in plain English:
const answer = await px.ask("cfpb mcp — consumer financial protection bureau complaint database (free, no auth)"); Related compound tools
These combine Cfpb with other data sources in a single call:
FinTech Intel MCP — Compound tools that chain SEC, CFPB, FDIC,
3 tools — fintech_company_deep_dive, fintech_bank_health_check, fintech_market_snapshot