npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@codespar/mcp-bigdatacorp

v0.1.2

Published

MCP server for BigDataCorp — Brazilian data enrichment + KYC (CPF/CNPJ/vehicle/property/antifraud datasets)

Readme

@codespar/mcp-bigdatacorp

MCP server for BigDataCorp — the Brazilian data-enrichment + KYC platform. CPF / CNPJ / vehicle / property / antifraud datasets used as the standard rail in BR e-commerce + lending agents for KYC, AML, and fraud scoring.

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "bigdatacorp": {
      "command": "npx",
      "args": ["@codespar/mcp-bigdatacorp"],
      "env": {
        "BIGDATACORP_ACCESS_TOKEN": "your-access-token",
        "BIGDATACORP_TOKEN_ID": "your-token-id"
      }
    }
  }
}

Cursor / VS Code

Same config in .cursor/mcp.json.

Tools (10)

Core lookups

| Tool | BigDataCorp endpoint | Notes | |---|---|---| | persons_lookup | POST /v1/datasets/persons | CPF → name, DOB, mother's name, addresses, contacts, deceased flag | | companies_lookup | POST /v1/datasets/companies | CNPJ → razão social, capital, partners, address, CNAE | | vehicles_lookup | POST /v1/datasets/vehicles | Plate / chassis / RENAVAM → make, model, FIPE, ownership, restrictions | | properties_lookup | POST /v1/datasets/properties | Address or registration → owner history + value estimate |

Enrichment slices

| Tool | BigDataCorp endpoint | Notes | |---|---|---| | financial_data | POST /v1/datasets/persons | Income, score, declared assets, banking, default history | | employment_data | POST /v1/datasets/persons | Current employer, history, monthly income, category | | sanctions_check | POST /v1/datasets/persons | OFAC / UN / EU / BR PEP / CNJ / INSS / IBAMA screening | | social_signals | POST /v1/datasets/persons | Instagram / LinkedIn / Twitter / Facebook presence |

Antifraud + address

| Tool | BigDataCorp endpoint | Notes | |---|---|---| | antifraud_score | POST /v1/datasets/antifraud | Composite fraud score (0-1000) + decision recommendation | | address_validation | POST /v1/datasets/addresses | CORREIOS + IBGE normalization + geocode |

Authentication

BigDataCorp uses paired headers (not Bearer):

AccessToken: <BIGDATACORP_ACCESS_TOKEN>
TokenId:     <BIGDATACORP_TOKEN_ID>

Both are required on every request. Issue both credentials from the BigDataCorp platform dashboard:

Environment Variables

| Variable | Required | Description | |---|---|---| | BIGDATACORP_ACCESS_TOKEN | yes | AccessToken header value | | BIGDATACORP_TOKEN_ID | yes | TokenId header value (paired) | | BIGDATACORP_API_BASE | no | Override base URL (default https://plataforma.bigdatacorp.com.br) |

BigDataCorp vs Certta vs Caf

Three BR identity rails in this catalog, each with a different specialty:

| Provider | Strength | Best for | |---|---|---| | BigDataCorp | Broad data enrichment + antifraud | KYC + AML + credit decisioning | | Certta (@codespar/mcp-certta) | KYC + biometrics + ICP-Brasil signature | Onboarding pipelines with signed contracts | | Caf (@codespar/mcp-caf) | KYC + Trust Platform orchestration | Hosted onboarding flows with policy rules |

Enterprise

Need governance, budget limits, and audit trails for agent identity calls? CodeSpar Enterprise adds policy engine, payment routing, and compliance templates on top of these MCP servers.

License

MIT