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-certta

v0.1.0

Published

MCP server for Certta — Brazilian identity + signature platform (KYC/KYB, biometrics, OCR, ICP-Brasil + electronic signature, onboarding pipelines)

Readme

@codespar/mcp-certta

MCP server for Certta — Brazilian identity + signature platform. KYC/KYB (CPF / CNPJ via Receita Federal + SPC / Serasa), face match + liveness, OCR of RG / CNH / comprovantes, antifraud score, ICP-Brasil digital signature + GoCertta electronic signature, and orchestrated onboarding pipelines that chain KYC + biometrics + signature in one process.

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "certta": {
      "command": "npx",
      "args": ["@codespar/mcp-certta"],
      "env": {
        "CERTTA_API_KEY": "your-api-key"
      }
    }
  }
}

Cursor / VS Code

Same config in .cursor/mcp.json.

Tools (11)

KYC / KYB

| Tool | Certta endpoint | Notes | |---|---|---| | kyc_lookup_cpf | POST /v1/kyc/cpf | CPF → name, DOB, regularity, restrictions, risk score | | kyb_lookup_cnpj | POST /v1/kyb/cnpj | CNPJ → corporate profile, QSA, CNAE, capital |

Biometrics

| Tool | Certta endpoint | Notes | |---|---|---| | biometrics_face_match | POST /v1/biometrics/face-match | Selfie vs document photo + liveness | | biometrics_liveness | POST /v1/biometrics/liveness | Passive liveness on a selfie |

Documents + antifraud

| Tool | Certta endpoint | Notes | |---|---|---| | documents_ocr | POST /v1/documents/ocr | OCR RG / CNH / CRLV / proof of residence / passport | | antifraud_score | POST /v1/antifraud/score | Composite risk score (0..100) |

Signature

| Tool | Certta endpoint | Notes | |---|---|---| | signature_icp_create | POST /v1/signature/icp/envelopes | ICP-Brasil digital signature envelope | | signature_electronic_create | POST /v1/signature/electronic/envelopes | GoCertta electronic signature envelope | | signature_get_envelope | GET /v1/signature/envelopes/{envelope_id} | Status + signer responses |

Onboarding pipelines

| Tool | Certta endpoint | Notes | |---|---|---| | onboarding_process_create | POST /v1/onboarding/processes | Orchestrate KYC + biometrics + signature in one flow | | onboarding_process_get | GET /v1/onboarding/processes/{process_id} | Per-step verdicts |

Authentication

Standard Bearer auth:

Authorization: Bearer <CERTTA_API_KEY>

Issue your API key from the Certta dashboard:

Sandbox / Testing

Sandbox endpoint: https://api-sandbox.certta.com.br. Override via CERTTA_API_BASE.

Environment Variables

| Variable | Required | Description | |---|---|---| | CERTTA_API_KEY | yes | API key from the Certta dashboard | | CERTTA_API_BASE | no | Override base URL (default https://api.certta.com.br) |

Certta vs Caf vs BigDataCorp

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

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

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