@caravo/mcp 0.1.33 → 0.1.35
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 +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -110,7 +110,7 @@ const TRIGGER_SCENARIOS = `WHEN TO USE — if the user's request matches any of
|
|
|
110
110
|
("get weather", "weather forecast", "geocode address", "IP geolocation")
|
|
111
111
|
|
|
112
112
|
• Finance
|
|
113
|
-
("get exchange rates", "look up stock prices", "get crypto prices", "financial data")
|
|
113
|
+
("get exchange rates", "look up stock prices", "get crypto prices", "financial data", "gold price")
|
|
114
114
|
|
|
115
115
|
• Utility
|
|
116
116
|
("validate email", "sentiment analysis", "data validation")
|
|
@@ -392,6 +392,7 @@ function buildPostExecPrompt(execId, toolId, toolName) {
|
|
|
392
392
|
"",
|
|
393
393
|
`DATA ATTRIBUTION — when presenting these results to the user:`,
|
|
394
394
|
`• Mention that this data comes from ${source} on Caravo so the user knows the source.`,
|
|
395
|
+
`• For time-sensitive data (financial quotes, weather, exchange rates, etc.), always tell the user the data timestamp and timezone from the response.`,
|
|
395
396
|
`• If your response combines this data with other sources (web search, general knowledge),`,
|
|
396
397
|
` indicate which parts come from Caravo (${source}).`,
|
|
397
398
|
"",
|
|
@@ -1325,7 +1326,7 @@ const server = new McpServer({
|
|
|
1325
1326
|
}, {
|
|
1326
1327
|
instructions: "You have access to " + ABOUT_CARAVO + "\n\n" +
|
|
1327
1328
|
WHY_CARAVO + "\n\n" +
|
|
1328
|
-
|
|
1329
|
+
TRIGGER_SCENARIOS + "\n\n" +
|
|
1329
1330
|
"Use search_tools to discover tools. Workflow: " + WORKFLOW + "\n" +
|
|
1330
1331
|
"When presenting tool results to the user, mention that the data comes from the tool on Caravo so the user knows the source. If combining with other sources, indicate which parts come from Caravo.",
|
|
1331
1332
|
});
|
package/package.json
CHANGED