Back to Browse

Crystal Suppliers MCP Server

Developer ToolsLow Risk8.7MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

Search verified crystal bracelets and source beads, accessories, and raw materials.

About

Search verified crystal bracelets and source beads, accessories, and raw materials.

Remote endpoints: streamable-http: https://ktcrystals.com/mcp

Security Report

8.7
Low Risk8.7Low Risk

Crystal Suppliers MCP is a well-designed read-only procurement server with strong security practices. All six tools are properly marked as read-only, non-destructive, and idempotent. Input validation is rigorous using Zod schemas, error handling is appropriate, and the server never invents or exfiltrates data. Permissions are narrowly scoped to file reading and HTTP serving, matching the server's stated purpose.

7 files analyzed · 3 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

Crystal Suppliers MCP

Crystal Suppliers MCP is a read-only procurement server for KT Crystals. It searches a verified catalog of 104 crystal bracelet SKUs and provides traceable sourcing checklists for loose beads, crystal accessories, and raw crystal materials.

The service does not invent price, MOQ, inventory, lead time, treatment, origin, certification, or shipping claims. Commercial fields remain requires_manual_confirmation.

Install and connect

Run directly from the repository:

{
  "mcpServers": {
    "crystal-suppliers": {
      "command": "node",
      "args": ["/absolute/path/to/crystal-suppliers-mcp/src/index.mjs"]
    }
  }
}

Run the OCI image over stdio:

{
  "mcpServers": {
    "crystal-suppliers": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/ziyuant222/crystal-suppliers-mcp:0.1.0"
      ]
    }
  }
}

Start Streamable HTTP:

docker run --rm -p 3000:3000 \
  ghcr.io/ziyuant222/crystal-suppliers-mcp:0.1.0 --http

The endpoint is then http://localhost:3000/mcp, with health status at http://localhost:3000/health.

Tools

ToolPurpose
crystal_search_productsSearch real bracelet SKUs by SKU, name, material, or theme.
crystal_get_productRetrieve one verified bracelet and related catalog products.
crystal_list_materialsList normalized materials and verified bracelet SKU counts.
crystal_get_sourcing_guidanceGet supplier-verification checks for bracelets, beads, accessories, or raw materials.
crystal_build_procurement_shortlistKeep verified bracelet results separate from adjacent advisory categories.
crystal_prepare_inquiryValidate supplied SKUs and draft an inquiry without sending or storing it.

Coverage contract

  • verified_catalog: grounded in the current 104-SKU bracelet catalog.
  • advisory_only: sourcing guidance only; no verified SKU coverage for the requested category.
  • mixed: verified bracelet candidates plus separately labeled advisory categories.

Inquiry drafting is local and stateless. It does not send email, submit a form, write to a database, or retain buyer details.

Development

npm ci
npm test
npm run start:http

The server supports Node.js 22 or newer and implements MCP over both stdio and stateless Streamable HTTP.

Reviews

No reviews yet

Be the first to review this server!