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 +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
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("/
|
|
1134
|
+
const data = await apiRequest("/claims", {
|
|
1135
1135
|
method: "POST",
|
|
1136
1136
|
body: JSON.stringify(requestBody)
|
|
1137
1137
|
});
|
package/package.json
CHANGED
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
|
-
}>('/
|
|
1606
|
+
}>('/claims', {
|
|
1607
1607
|
method: 'POST',
|
|
1608
1608
|
body: JSON.stringify(requestBody),
|
|
1609
1609
|
});
|