-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathserver.template.json
More file actions
43 lines (43 loc) · 1.54 KB
/
Copy pathserver.template.json
File metadata and controls
43 lines (43 loc) · 1.54 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
40
41
42
43
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.BlockRunAI/blockrun-mcp",
"description": "Web search, deep research, prediction markets & crypto data for AI agents. Pay per call via x402.",
"repository": {
"url": "https://github.com/BlockRunAI/blockrun-mcp",
"source": "github"
},
"version": "0.0.0-template",
"packages": [
{
"registryType": "npm",
"identifier": "@blockrun/mcp",
"version": "0.0.0-template",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "Optional: EVM private key (0x-prefixed hex) for USDC payments on Base; also the Polymarket signer. If not set, a wallet is auto-generated.",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "BLOCKRUN_WALLET_KEY"
},
{
"description": "Optional: Solana private key (bs58) for USDC payments on Solana. Setting it selects the Solana chain. If not set, a wallet is auto-generated.",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "SOLANA_WALLET_KEY"
},
{
"description": "Optional: BlockRun account API key; bills your prepaid balance instead of a wallet (no per-call network fee). Takes priority over a wallet when set.",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "BLOCKRUN_API_KEY"
}
]
}
]
}