ClaudeChatGPTPerplexityGeminiMicrosoft CopilotRaycastMeta AIGrokZ.aiQwenKimi
DeepSeekMistralCursorVS CodeWindsurfJetBrainsClineLovableVercel AI SDKLangChain

Use bcryptjs with your AI.

Connect your account once and let the AI you already use work with it, without building another integration. Hash and verify passwords with the industry-standard bcrypt algorithm. Two capabilities in one: hash with configurable salt rounds, and verify against stored hashes. P

Included with plan

Ask AI about this Connector

Developed, maintained, and hosted by Vinkius.

MCP VERIFIED · PRODUCTION READY · VINKIUS GUARANTEED

Waiting for input…

Works with modern AI clients that support MCP, including ChatGPT, Claude, Cursor, and more.

ChatGPTClaudeCursorPerplexityGeminiMicrosoft CopilotRaycastMeta AI

Complete set · 2 capabilities

The complete bcryptjs capability set.

These are the exact actions your AI can choose when you ask it to work with bcryptjs.

Capability set01 / 01

01-02

2 capabilities in this set.

Part of 2 available through bcryptjs.

  1. 01

    Bcrypt hash

    Bcrypt is the industry standard for password hashing. it includes a salt and is intentionally slow to resist brute-force attacks. Salt rounds control the computational cost (10 is default, 12+ for high security). Never store plaintext passwords. Hashes a password using bcrypt with configurable salt rounds. Pure JS, no native compilation needed

  2. 02

    Bcrypt verify

    Pass the password and the hash, and receive a boolean isMatch result. This is the only correct way to verify bcrypt passwords. never compare hashes directly. Verifies a password against a bcrypt hash. Returns boolean match result

Observed, not estimated

773ms average. Fast in production.

bcryptjs is checked daily against the live service.

Daily averagePeak 977ms
Aug 20Today
Fastest day
672ms
Slowest day
977ms
14-day trend
Slowing+14%

Connect your client

One URL. Every client.

Activate the Connector, copy your link, and paste it into the client you already use. 2 capabilities arrive ready to run.

Preview access · not provider authentication

The vk_preview_* token belongs to Vinkius preview infrastructure. It lets Claude discover and display the capabilities of bcryptjs, so you can see the experience inside your AI.

It does not authenticate your account with bcryptjs. Actions requiring credentials or live account data may not run until you activate the Connector and authorize the service.

bcryptjs Connector

You're all set. Choose your MCP client and follow the setup instructions.

Connector linkhttps://edge.vinkius.com/vk_preview_VgRCSgyjUOAZXasfzN85yyaKf89xFObklBU0TrT8/mcp

Claude Desktop

Follow the steps below to connect in seconds.

  1. 1In Claude Desktop, open Settings → Connectors.
  2. 2Click “Add custom connector” and paste the connector link above as the remote MCP server URL.
  3. 3Click Add and start a new chat — bcryptjs capabilities are ready to use.
Configuration · claude_desktop_config.jsonCopy
{
  "mcpServers": {
    "bcrypt-hash-engine-mcp": {
      "url": "https://edge.vinkius.com/vk_preview_VgRCSgyjUOAZXasfzN85yyaKf89xFObklBU0TrT8/mcp"
    }
  }
}
  • Claude
  • ChatGPT
  • Cursor
  • VS Code
  • Windsurf
  • Claude Code
  • JetBrains
  • Cline

Step-by-step instructions for each client are in the guide. How to connect

FAQ

Questions bcryptjs owners ask.

  • 01

    Why bcrypt instead of SHA-256 or MD5 for passwords?

    SHA-256 and MD5 are fast. that's the problem. An attacker can try billions of hashes per second. Bcrypt is intentionally slow (configurable via salt rounds), making brute-force attacks economically infeasible.

  • 02

    What salt rounds should I use for a financial application?

    12 minimum. Each additional round doubles the computation time. 10 = ~100ms, 12 = ~400ms, 14 = ~1.6s. Balance security vs. login latency for your use case.

  • 03

    Can I verify a password without knowing the salt?

    Yes. that's the beauty of bcrypt. The salt is embedded in the hash string itself ($2a$10$...). Just pass the password and the stored hash to bcrypt_verify.