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

NameTypeRequiredDescription
complaint_idstringyesCFPB 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

FieldTypeDescription
complaint_idstringUnique complaint identifier
date_receivedstringDate complaint was received
productstringProduct category
sub_productstring | nullSubcategory of product
issuestringMain complaint issue
sub_issuestring | nullSubcategory of issue
narrativestring | nullConsumer complaint narrative
companystringCompany name
statestring | nullConsumer state
company_responsestringCompany’s response status
company_public_responsestring | nullPublic response from company
timelystring | nullWhether response was timely
consumer_disputedstring | nullWhether consumer disputed resolution
submitted_viastring | nullSubmission 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.

Regenerated from source · build May 9, 2026