cfpb_get_complaint
Pack: cfpb · Endpoint: https://gateway.pipeworx.io/cfpb/mcp
Retrieve full details for a specific complaint by ID. Returns narrative, company response, resolution status, and metadata.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
complaint_id | string | yes | CFPB complaint ID number |
Example call
Arguments
{
"complaint_id": "3385723"
}
curl
curl -X POST https://gateway.pipeworx.io/cfpb/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"cfpb_get_complaint","arguments":{"complaint_id":"3385723"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('cfpb_get_complaint', {
"complaint_id": "3385723"
});
Response shape
Always returns: complaint_id, date_received, product, issue, company, company_response
| Field | Type | Description |
|---|---|---|
complaint_id | string | Unique complaint identifier |
date_received | string | Date complaint was received |
product | string | Product category |
sub_product | string | null | Subcategory of product |
issue | string | Main complaint issue |
sub_issue | string | null | Subcategory of issue |
narrative | string | null | Consumer complaint narrative |
company | string | Company name |
state | string | null | Consumer state |
company_response | string | Company’s response status |
company_public_response | string | null | Public response from company |
timely | string | null | Whether response was timely |
consumer_disputed | string | null | Whether consumer disputed resolution |
submitted_via | string | null | Submission method |
Full JSON Schema
{
"type": "object",
"properties": {
"complaint_id": {
"type": "string",
"description": "Unique complaint identifier"
},
"date_received": {
"type": "string",
"description": "Date complaint was received"
},
"product": {
"type": "string",
"description": "Product category"
},
"sub_product": {
"type": [
"string",
"null"
],
"description": "Subcategory of product"
},
"issue": {
"type": "string",
"description": "Main complaint issue"
},
"sub_issue": {
"type": [
"string",
"null"
],
"description": "Subcategory of issue"
},
"narrative": {
"type": [
"string",
"null"
],
"description": "Consumer complaint narrative"
},
"company": {
"type": "string",
"description": "Company name"
},
"state": {
"type": [
"string",
"null"
],
"description": "Consumer state"
},
"company_response": {
"type": "string",
"description": "Company's response status"
},
"company_public_response": {
"type": [
"string",
"null"
],
"description": "Public response from company"
},
"timely": {
"type": [
"string",
"null"
],
"description": "Whether response was timely"
},
"consumer_disputed": {
"type": [
"string",
"null"
],
"description": "Whether consumer disputed resolution"
},
"submitted_via": {
"type": [
"string",
"null"
],
"description": "Submission method"
}
},
"required": [
"complaint_id",
"date_received",
"product",
"issue",
"company",
"company_response"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cfpb": {
"url": "https://gateway.pipeworx.io/cfpb/mcp"
}
}
}
See Getting Started for client-specific install steps.