@cryptoquant_official/mcp 0.1.0 → 0.1.1

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/dist/config.d.ts CHANGED
@@ -7,12 +7,12 @@
7
7
  */
8
8
  /**
9
9
  * Get the configured API URL.
10
- * Returns the base URL with /v1 suffix (e.g., "https://api.cryptoquant.com/v1")
10
+ * Returns the base URL with /v1 suffix (e.g., "https://api-dev.cryptoquant.com/v1")
11
11
  */
12
12
  export declare function getApiUrl(): string;
13
13
  /**
14
14
  * Get the API base URL without version suffix.
15
- * Returns the base URL (e.g., "https://api.cryptoquant.com")
15
+ * Returns the base URL (e.g., "https://api-dev.cryptoquant.com")
16
16
  */
17
17
  export declare function getApiBaseUrl(): string;
18
18
  //# sourceMappingURL=config.d.ts.map
package/dist/config.js CHANGED
@@ -5,17 +5,17 @@
5
5
  * 1. CRYPTOQUANT_API_URL environment variable (optional override)
6
6
  * 2. Default production URL
7
7
  */
8
- const DEFAULT_API_URL = "https://api.cryptoquant.com/v1";
8
+ const DEFAULT_API_URL = "https://api-dev.cryptoquant.com/v1";
9
9
  /**
10
10
  * Get the configured API URL.
11
- * Returns the base URL with /v1 suffix (e.g., "https://api.cryptoquant.com/v1")
11
+ * Returns the base URL with /v1 suffix (e.g., "https://api-dev.cryptoquant.com/v1")
12
12
  */
13
13
  export function getApiUrl() {
14
14
  return process.env.CRYPTOQUANT_API_URL || DEFAULT_API_URL;
15
15
  }
16
16
  /**
17
17
  * Get the API base URL without version suffix.
18
- * Returns the base URL (e.g., "https://api.cryptoquant.com")
18
+ * Returns the base URL (e.g., "https://api-dev.cryptoquant.com")
19
19
  */
20
20
  export function getApiBaseUrl() {
21
21
  return getApiUrl().replace(/\/v1$/, "");
@@ -1 +1 @@
1
- {"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,MAAM,eAAe,GAAG,gCAAgC,CAAC;AAEzD;;;GAGG;AACH,MAAM,UAAU,SAAS;IACvB,OAAO,OAAO,CAAC,GAAG,CAAC,mBAAmB,IAAI,eAAe,CAAC;AAC5D,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,aAAa;IAC3B,OAAO,SAAS,EAAE,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;AAC1C,CAAC"}
1
+ {"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,MAAM,eAAe,GAAG,oCAAoC,CAAC;AAE7D;;;GAGG;AACH,MAAM,UAAU,SAAS;IACvB,OAAO,OAAO,CAAC,GAAG,CAAC,mBAAmB,IAAI,eAAe,CAAC;AAC5D,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,aAAa;IAC3B,OAAO,SAAS,EAAE,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;AAC1C,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptoquant_official/mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "CryptoQuant MCP Server - On-chain analytics for Claude and AI coding agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",