@blockrun/mcp 0.5.1 → 0.5.2

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.
@@ -824,7 +824,7 @@ Actions:
824
824
  switch (action) {
825
825
  case "search":
826
826
  if (!query) throw new Error("query required for search action");
827
- result = await req.requestWithPaymentRaw("/api/v1/exa/search", {
827
+ result = await req.requestWithPaymentRaw("/v1/exa/search", {
828
828
  query,
829
829
  numResults: num_results,
830
830
  category,
@@ -834,15 +834,15 @@ Actions:
834
834
  break;
835
835
  case "answer":
836
836
  if (!query) throw new Error("query required for answer action");
837
- result = await req.requestWithPaymentRaw("/api/v1/exa/answer", { query });
837
+ result = await req.requestWithPaymentRaw("/v1/exa/answer", { query });
838
838
  break;
839
839
  case "contents":
840
840
  if (!urls?.length) throw new Error("urls array required for contents action");
841
- result = await req.requestWithPaymentRaw("/api/v1/exa/contents", { urls });
841
+ result = await req.requestWithPaymentRaw("/v1/exa/contents", { urls });
842
842
  break;
843
843
  case "similar":
844
844
  if (!url) throw new Error("url required for similar action");
845
- result = await req.requestWithPaymentRaw("/api/v1/exa/find-similar", {
845
+ result = await req.requestWithPaymentRaw("/v1/exa/find-similar", {
846
846
  url,
847
847
  numResults: num_results
848
848
  });
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  initializeMcpServer
4
- } from "./chunk-NHJMKXNS.js";
4
+ } from "./chunk-H2DXT5AJ.js";
5
5
 
6
6
  // src/http-server.ts
7
7
  import { createServer } from "http";
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  initializeMcpServer
4
- } from "./chunk-NHJMKXNS.js";
4
+ } from "./chunk-H2DXT5AJ.js";
5
5
 
6
6
  // src/index.ts
7
7
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockrun/mcp",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "mcpName": "io.github.BlockRunAI/blockrun-mcp",
5
5
  "description": "BlockRun MCP Server - Access 41+ AI models + on-chain data via x402 micropayments. Supports stdio and HTTP transport.",
6
6
  "type": "module",