-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
39 lines (39 loc) · 1.44 KB
/
server.json
File metadata and controls
39 lines (39 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.Hashlock-Tech/hashlock",
"description": "Sealed-bid OTC trading with HTLC atomic settlement. ETH, BTC, SUI. Built for AI agents.",
"title": "Hashlock Markets",
"repository": {
"url": "https://github.com/Hashlock-Tech/hashlock-mcp",
"source": "github",
"id": "1206275989"
},
"version": "1.4.0",
"websiteUrl": "https://hashlock.markets",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@hashlock-tech/mcp",
"version": "0.4.0",
"runtimeHint": "npx",
"transport": { "type": "stdio" },
"runtimeArguments": [
{ "description": "Auto-confirm npx install prompt", "isRequired": true, "value": "-y", "type": "positional" }
],
"environmentVariables": [
{ "description": "SIWE JWT from hashlock.markets/sign/login", "isRequired": true, "isSecret": true, "name": "HASHLOCK_ACCESS_TOKEN" },
{ "description": "GraphQL endpoint override", "default": "https://hashlock.markets/graphql", "name": "HASHLOCK_ENDPOINT" }
]
}
],
"remotes": [
{
"type": "streamable-http",
"url": "https://hashlock.markets/mcp",
"headers": [
{ "description": "SIWE bearer token from hashlock.markets/sign/login", "isRequired": true, "isSecret": true, "name": "Authorization" }
]
}
]
}