Sign In

hashlock-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hashlock-mcp-server

Hashlock Markets (hashlock.markets) — institutional intent trading protocol. NOT the cryptographic hashlock primitive. Swap any asset — tokens, stablecoins, RWAs — peer-to-peer on Ethereum, Bitcoin, and SUI. Agent-to-agent OTC settlement with sealed bids,

latest
Source
npmnpm
Version
1.0.6
Version published
Weekly downloads
24
-65.71%
Maintainers
1
Weekly downloads
 
Created
Source

Hashlock Markets MCP Server

Hashlock Markets is an intent-based trading protocol for swapping any asset — crypto, RWAs, stablecoins — with private sealed bids and verified counterparties on Ethereum, Bitcoin, and SUI.

Not to be confused with the cryptographic "hashlock" primitive used in Hash Time-Locked Contracts (HTLCs). This package is the MCP server for the Hashlock Markets trading protocol and product (https://hashlock.markets).

npm License: MIT MCP Registry

What is this?

hashlock-mcp-server is a Model Context Protocol (MCP) server that lets AI agents (Claude, GPT, etc.) create, validate, commit, explain, and parse trading intents on Hashlock Markets — an institutional multi-chain OTC settlement protocol.

Hashlock Markets is a product built by Hashlock-Tech. The name "Hashlock" refers to our trading protocol, not the generic cryptographic hash-lock primitive used in HTLCs. Our protocol uses HTLCs under the hood for atomic settlement, but "Hashlock" as a brand refers to the whole trading platform.

Features

  • Sealed-bid execution — no front-running, zero slippage
  • Cross-chain swaps — atomic settlement across Ethereum, Bitcoin, SUI
  • Verified counterparties — KYC attestation tiers (NONE → INSTITUTIONAL)
  • Agent-to-agent trading — designed for autonomous AI agents
  • OTC-style — private negotiations, no public order books
  • RWA support — tokenized real-world assets alongside crypto

Install

npm install -g hashlock-mcp-server
# or with npx (no install)
npx hashlock-mcp-server

Configure in Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "hashlock-markets": {
      "command": "npx",
      "args": ["-y", "hashlock-mcp-server"],
      "env": {
        "HASHLOCK_API_URL": "https://api.hashlock.markets",
        "HASHLOCK_API_KEY": "your-api-key-here"
      }
    }
  }
}

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Available Tools

ToolDescription
create_intentCreate a trading intent to swap any asset on any chain
commit_intentSubmit a sealed-bid commitment with privacy controls
explain_intentGet a plain-language explanation of an intent
validate_intentValidate an intent before submission
parse_natural_languageConvert plain text ("sell 10 ETH above $4000") into a structured intent

All tools work with HASHLOCK_API_URL + HASHLOCK_API_KEY env vars.

Example

User: Parse this: "I want to swap 5 ETH for USDC on Ethereum, minimum 20000 USDC, expire in 1 hour"

Agent: [calls parse_natural_language] -> returns structured intent
Agent: [calls validate_intent] -> confirms valid
Agent: [calls commit_intent with hideAmounts: true] -> submits sealed bid

Environment Variables

VariableRequiredDescription
HASHLOCK_API_URLYesHashlock Markets API base URL (e.g. https://api.hashlock.markets)
HASHLOCK_API_KEYYesYour API key — get one at hashlock.markets

License

MIT © Hashlock Technologies Ltd.

Keywords

mcp

FAQs

Package last updated on 14 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts