Security
Split a secret into n shares where any k (the threshold) are required to reconstruct it — Shamir's k-of-n scheme over GF(256). Pure in-process cryptography (crypto.randomBytes for polynomial coefficients), no network. Split a password/key/passphrase into shares held by separate people, then combine any k of them to recover it. Confidentiality only — no authenticity.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/shamir-secret-sharing' \
-H 'Content-Type: application/json' \
-d '{"mode":"split","secret":"my-master-password","threshold":3,"shares":5,"shareInput":"Paste shares to combine (one per line). At least k shares required. Used in Combine mode."}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/shamir-secret-sharing| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | No | — |
| secret | textarea | No | — |
| threshold | number | No | — |
| shares | number | No | — |
| shareInput | textarea | No | — |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-shamir-secret-sharing": {
"name": "shamir-secret-sharing",
"description": "Split a secret into n shares where any k (the threshold) are required to reconstruct it — Shamir's k-of-n scheme over GF(256). Pure in-process cryptography (crypto.randomBytes for polynomial coefficients), no network. Split a password/key/passphrase into shares held by separate people, then combine any k of them to recover it. Confidentiality only — no authenticity.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=shamir-secret-sharing",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "shamir-secret-sharing",
"arguments": {
"mode": "split",
"secret": "my-master-password",
"threshold": 3,
"shares": 5,
"shareInput": "Paste shares to combine (one per line). At least k shares required. Used in Combine mode."
}
}
}HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]