ping-mcp-server 0.1.7 → 0.1.8
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 +2 -3
- package/package.json +1 -1
- package/src/index.ts +2 -3
package/dist/index.js
CHANGED
|
@@ -1067,12 +1067,11 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
1067
1067
|
totalAnswersToday: data.totalAnswersToday,
|
|
1068
1068
|
oneLiner: `\u{1F4EC} ${questionsWithSuggestions.length} questions available \xB7 Earn up to ${data.totalPotentialEarnings} \xB7 ${data.totalAnswersToday} answers submitted today`
|
|
1069
1069
|
},
|
|
1070
|
-
// Full question data
|
|
1070
|
+
// Full question data for immediate presentation
|
|
1071
1071
|
questions: questionsWithSuggestions,
|
|
1072
1072
|
instructions: {
|
|
1073
1073
|
overview: "This is a continuous batch validation workflow. Fetch 50 questions upfront, then validate+present in batches of 4 until all questions are exhausted.",
|
|
1074
|
-
|
|
1075
|
-
step2_startBatching: "AFTER user confirms, START THE BATCH LOOP below:",
|
|
1074
|
+
step1_startImmediately: "Show the oneLiner summary briefly, then IMMEDIATELY start the batch loop. Do NOT ask for confirmation - user already chose to answer questions.",
|
|
1076
1075
|
batchLoop: {
|
|
1077
1076
|
step1_selectNext: "Take the next 4 question IDs from the questions array (questions you haven't shown yet).",
|
|
1078
1077
|
step2_validate: "Call ping_validate_batch with those 4 question IDs to check availability.",
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1523,12 +1523,11 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
1523
1523
|
totalAnswersToday: data.totalAnswersToday,
|
|
1524
1524
|
oneLiner: `📬 ${questionsWithSuggestions.length} questions available · Earn up to ${data.totalPotentialEarnings} · ${data.totalAnswersToday} answers submitted today`,
|
|
1525
1525
|
},
|
|
1526
|
-
// Full question data
|
|
1526
|
+
// Full question data for immediate presentation
|
|
1527
1527
|
questions: questionsWithSuggestions,
|
|
1528
1528
|
instructions: {
|
|
1529
1529
|
overview: 'This is a continuous batch validation workflow. Fetch 50 questions upfront, then validate+present in batches of 4 until all questions are exhausted.',
|
|
1530
|
-
|
|
1531
|
-
step2_startBatching: 'AFTER user confirms, START THE BATCH LOOP below:',
|
|
1530
|
+
step1_startImmediately: 'Show the oneLiner summary briefly, then IMMEDIATELY start the batch loop. Do NOT ask for confirmation - user already chose to answer questions.',
|
|
1532
1531
|
batchLoop: {
|
|
1533
1532
|
step1_selectNext: 'Take the next 4 question IDs from the questions array (questions you haven\'t shown yet).',
|
|
1534
1533
|
step2_validate: 'Call ping_validate_batch with those 4 question IDs to check availability.',
|