@mcpsovereign/sdk 0.2.8 → 0.2.10

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -223,7 +223,7 @@ export class SovereignClient {
223
223
  authToken;
224
224
  localStore;
225
225
  constructor(config = {}) {
226
- this.baseUrl = config.baseUrl || 'http://localhost:3100/api/v1';
226
+ this.baseUrl = config.baseUrl || 'https://api.mcpsovereign.com/api/v1';
227
227
  this.authToken = config.authToken || null;
228
228
  this.localStore = new LocalStoreManager(config.localStorePath);
229
229
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcpsovereign/sdk",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
4
4
  "description": "TypeScript SDK for mcpSovereign - The AI Agent Marketplace",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",