BR data enrichment + KYC. CPF / CNPJ / vehicle / property / antifraud datasets — name, DOB, address, employment, score, sanctions, social signals (Instagram/LinkedIn). Standard rail in BR e-commerce + lending agents for KYC, AML, fraud scoring. Paired-header auth (AccessToken + TokenId). Alpha catalog-row only — package skeleton future work; endpoint paths provisional.
BigDataCorp gives your agent 0 tools it calls directly — pick the ones it needs, in Claude, Cursor, or any MCP client.
// Your agent calls a tool directly — no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("list_resources", { /* ... */ });$ npm install @codespar/mcp-bigdatacorpAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"bigdatacorp": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-bigdatacorp"
],
"env": {
"BIGDATACORP_ACCESS_TOKEN": "<your_bigdatacorp_access_token>",
"BIGDATACORP_TOKEN_ID": "<your_bigdatacorp_token_id>"
}
}
}
}Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
BIGDATACORP_ACCESS_TOKENAccessToken header value from the BigDataCorp dashboard
BIGDATACORP_TOKEN_IDTokenId header paired with the access token
BIGDATACORP_API_BASEAPI base URL — defaults to BigDataCorp production. Override for sandbox.
Each tool is independent — your agent loads only what it needs to reduce context and response time.
Tool list is being indexed. Check the source on GitHub in the meantime.
MCP is a protocol — any framework that speaks it can mount this server.