ping-mcp-server 0.1.1 → 0.1.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.
package/dist/index.js CHANGED
@@ -1131,7 +1131,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
1131
1131
  if (!auth && wallet) {
1132
1132
  requestBody.wallet = wallet;
1133
1133
  }
1134
- const data = await apiRequest("/claim", {
1134
+ const data = await apiRequest("/claims", {
1135
1135
  method: "POST",
1136
1136
  body: JSON.stringify(requestBody)
1137
1137
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ping-mcp-server",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "MCP server that gives Claude Code the ability to interact with Ping",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -1603,7 +1603,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
1603
1603
  txHash: string;
1604
1604
  pending?: boolean;
1605
1605
  error?: string;
1606
- }>('/claim', {
1606
+ }>('/claims', {
1607
1607
  method: 'POST',
1608
1608
  body: JSON.stringify(requestBody),
1609
1609
  });