@blockrun/mcp 0.6.1 → 0.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![npm version](https://img.shields.io/npm/v/@blockrun/mcp)](https://www.npmjs.com/package/@blockrun/mcp)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
7
7
 
8
- BlockRun MCP is a Model Context Protocol server that gives Claude Code (and any MCP-compatible agent) access to real-time web search, neural research, prediction markets, crypto DEX data, X/Twitter intelligence, and 41 LLM models — all paid via x402 micropayments in USDC. No API keys. No subscriptions. No accounts.
8
+ BlockRun MCP gives your AI agent access to live data it can't get on its own real-time web search, neural research, prediction markets, crypto DEX prices, and X/Twitter intelligence. All paid via x402 micropayments in USDC. No API keys. No subscriptions. No accounts.
9
9
 
10
10
  ---
11
11
 
@@ -39,7 +39,7 @@ No Node.js. No npm. Works from any MCP client. Pass your wallet key via `X-Walle
39
39
  | `blockrun_markets` | Prediction markets — Polymarket, Kalshi | $0.001/call |
40
40
  | `blockrun_dex` | Real-time DEX prices and liquidity via DexScreener | FREE |
41
41
  | `blockrun_image` | Image generation and editing (DALL-E 3, Flux) | $0.02–0.08 |
42
- | `blockrun_chat` | 41 AI models get a second opinion or use a specialized model | per token |
42
+ | `blockrun_chat` | Second opinion from another model (GPT, Gemini, DeepSeek, etc.) | per token |
43
43
  | `blockrun_wallet` | Wallet balance, agent budgets, spending reports | FREE |
44
44
  | `blockrun_models` | List all models with pricing | FREE |
45
45
 
@@ -94,7 +94,7 @@ Wallet resolution order:
94
94
 
95
95
  - **Website:** [blockrun.ai](https://blockrun.ai)
96
96
  - **npm:** [@blockrun/mcp](https://www.npmjs.com/package/@blockrun/mcp)
97
- - **Hosted MCP:** [mcp.blockrun.ai](https://mcp.blockrun.ai)
97
+ - **Hosted MCP:** [mcp.blockrun.ai/mcp](https://mcp.blockrun.ai/mcp)
98
98
  - **GitHub:** [github.com/blockrunai/blockrun-mcp](https://github.com/blockrunai/blockrun-mcp)
99
99
  - **Telegram:** [t.me/+mroQv4-4hGgzOGUx](https://t.me/+mroQv4-4hGgzOGUx)
100
100
  - **X:** [@BlockRunAI](https://x.com/BlockRunAI)
package/dist/index.js CHANGED
@@ -433,35 +433,13 @@ function registerChatTool(server, budget) {
433
433
  server.registerTool(
434
434
  "blockrun_chat",
435
435
  {
436
- description: `Chat with 41 AI models from 7 providers via BlockRun micropayments. No API keys needed.
437
- Recommended for agents: use routing: "smart" to auto-select the optimal model via ClawRouter.
438
- routing_profile: "free" (zero cost NVIDIA), "eco" (budget), "auto" (balanced, default), "premium" (best quality)
436
+ description: `Get a second opinion from another AI model, or use a specialized model for a specific task. Useful when you want to cross-check analysis, use a reasoning model (o3, DeepSeek Reasoner) for hard problems, or use a free NVIDIA model for bulk tasks.
439
437
 
440
- Three ways to use:
441
- 1. ClawRouter (recommended): routing: "smart" \u2014 auto-selects optimal model via 14-dimension AI routing
442
- 2. Direct model: model: "openai/gpt-5.4"
443
- 3. Smart routing: mode: "fast"|"balanced"|"powerful"|"cheap"|"reasoning"|"free"|"coding"
444
- 4. Multi-turn: pass messages[] array (conversation history) \u2014 "message" is appended as the final user turn
438
+ Use routing:"smart" to auto-select the best model, or pick directly: model:"openai/o3", model:"deepseek/deepseek-reasoner", model:"nvidia/deepseek-v3.2" (free).
445
439
 
446
- All providers (format: provider/model-id):
447
- \u2022 OpenAI (13): gpt-5.4, gpt-5.4-pro, gpt-5.3, gpt-5.2, gpt-5.4-mini, gpt-5-mini, gpt-5.4-nano, gpt-5.2-pro, gpt-5.3-codex, o1, o1-mini, o3, o3-mini
448
- \u2022 Anthropic (4): claude-haiku-4.5, claude-sonnet-4.6, claude-opus-4.5, claude-opus-4.6
449
- \u2022 Google (7): gemini-3.1-pro, gemini-3-pro-preview, gemini-3-flash-preview, gemini-2.5-pro, gemini-2.5-flash, gemini-3.1-flash-lite, gemini-2.5-flash-lite
450
- \u2022 DeepSeek (2): deepseek-chat, deepseek-reasoner
451
- \u2022 NVIDIA (12, most FREE*): gpt-oss-120b*, gpt-oss-20b*, kimi-k2.5, nemotron-ultra-253b*, nemotron-3-super-120b*, nemotron-super-49b*, deepseek-v3.2*, mistral-large-3-675b*, qwen3-coder-480b*, devstral-2-123b*, glm-4.7*, llama-4-maverick*
452
- \u2022 ZAI (2): glm-5, glm-5-turbo
453
- \u2022 MiniMax (1): minimax-m2.7
440
+ Prefer blockrun_search or blockrun_exa for research \u2014 they're purpose-built for that.
454
441
 
455
- Smart routing modes:
456
- - fast: Gemini Flash, GPT-5 Mini (lowest latency)
457
- - balanced: GPT-5.4, Claude Sonnet 4.6, Gemini Pro (best default)
458
- - powerful: GPT-5.4-Pro, Claude Opus 4.6 (highest quality)
459
- - cheap: NVIDIA free + DeepSeek (lowest cost)
460
- - reasoning: o3, o1, DeepSeek Reasoner (complex logic)
461
- - free: All free NVIDIA models (zero cost)
462
- - coding: GPT-5.3-Codex, Qwen3-Coder, Devstral (code tasks)
463
-
464
- Run blockrun_models for live pricing.`,
442
+ Run blockrun_models to see all available models with pricing.`,
465
443
  inputSchema: {
466
444
  message: z2.string().describe("Your message to the AI"),
467
445
  model: z2.string().optional().describe("Specific model ID (e.g., 'openai/gpt-4o')"),
@@ -1048,12 +1026,12 @@ function initializeMcpServer(server) {
1048
1026
  async function main() {
1049
1027
  const server = new McpServer({
1050
1028
  name: "blockrun-mcp",
1051
- version: "0.6.0"
1029
+ version: "0.6.2"
1052
1030
  });
1053
1031
  initializeMcpServer(server);
1054
1032
  const transport = new StdioServerTransport();
1055
1033
  await server.connect(transport);
1056
- console.error("BlockRun MCP Server started (v0.6.0) \u2014 stdio transport");
1034
+ console.error("BlockRun MCP Server started (v0.6.2) \u2014 stdio transport");
1057
1035
  }
1058
1036
  main().catch((error) => {
1059
1037
  console.error("Fatal error:", error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockrun/mcp",
3
- "version": "0.6.1",
3
+ "version": "0.6.3",
4
4
  "mcpName": "io.github.BlockRunAI/blockrun-mcp",
5
5
  "description": "BlockRun MCP Server - Give your AI agent web search, deep research, prediction markets, crypto data, X/Twitter intelligence. Paid via x402 micropayments.",
6
6
  "type": "module",