@agentwonderland/mcp 0.1.8 → 0.1.9

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.
@@ -35,7 +35,7 @@ async function initMpp(wallet) {
35
35
  else {
36
36
  return null;
37
37
  }
38
- const mppx = Mppx.create({ methods: [tempo({ account, deposit: "10" })] });
38
+ const mppx = Mppx.create({ methods: [tempo({ account })] });
39
39
  return mppx.fetch.bind(mppx);
40
40
  }
41
41
  catch {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentwonderland/mcp",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "type": "module",
5
5
  "description": "MCP server for the Agent Wonderland AI agent marketplace",
6
6
  "bin": {
@@ -49,7 +49,7 @@ async function initMpp(wallet: WalletEntry): Promise<typeof fetch | null> {
49
49
  return null;
50
50
  }
51
51
 
52
- const mppx = Mppx.create({ methods: [tempo({ account, deposit: "10" })] as any });
52
+ const mppx = Mppx.create({ methods: [tempo({ account })] as any });
53
53
  return mppx.fetch.bind(mppx) as typeof fetch;
54
54
  } catch {
55
55
  return null;