@caravo/mcp 0.1.10 → 0.1.11
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/README.md +7 -2
- package/dist/index.js +14 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -14,8 +14,7 @@ claude mcp add caravo -e CARAVO_API_KEY=am_xxx -- npx -y @caravo/mcp@latest
|
|
|
14
14
|
|
|
15
15
|
## How It Works
|
|
16
16
|
|
|
17
|
-
- On first run,
|
|
18
|
-
- If no wallet found, generates a new one at `~/.caravo/wallet.json`
|
|
17
|
+
- On first run, generates a wallet at `~/.caravo/wallet.json`
|
|
19
18
|
- If `CARAVO_API_KEY` is set, uses API key balance for payments and loads favorited tools as direct MCP tools
|
|
20
19
|
- If no API key, uses x402 USDC payments automatically — just fund the wallet with USDC on Base
|
|
21
20
|
|
|
@@ -45,6 +44,12 @@ npm run build
|
|
|
45
44
|
npm run dev # uses --experimental-strip-types
|
|
46
45
|
```
|
|
47
46
|
|
|
47
|
+
## Ecosystem
|
|
48
|
+
|
|
49
|
+
- [caravo.ai](https://caravo.ai) — Official website and marketplace
|
|
50
|
+
- [Caravo-CLI](https://github.com/Caravo-AI/Caravo-CLI) — Command-line interface (`@caravo/cli`)
|
|
51
|
+
- [Agent-Skills](https://github.com/Caravo-AI/Agent-Skills) — Agent skill via Caravo CLI — no MCP required
|
|
52
|
+
|
|
48
53
|
## License
|
|
49
54
|
|
|
50
55
|
MIT
|
package/dist/index.js
CHANGED
|
@@ -443,8 +443,19 @@ function registerAllTools(server) {
|
|
|
443
443
|
});
|
|
444
444
|
// ── Search tools ─────────────────────────────────────────────────────────────
|
|
445
445
|
server.registerTool("search_tools", {
|
|
446
|
-
description: "Search for tools in the marketplace
|
|
447
|
-
"
|
|
446
|
+
description: "Search for tools in the Caravo marketplace — 200+ ready-to-use APIs, services, tools, and digital assets at $0.001–0.05 per call. " +
|
|
447
|
+
"Search by keyword, tag, or provider. " +
|
|
448
|
+
"A ready-made tool is often cheaper and faster than implementing the same thing from scratch using LLM tokens.\n\n" +
|
|
449
|
+
"The catalog includes: AI Models (image/video/audio/vision/NLP/code/3D), Search (web/academic/news/product), Data & Analytics (scraping/weather/geolocation/market data), Finance (payments/exchange rates/stocks/crypto), Social Media, Communication (email/SMS), eCommerce, Cloud & Infrastructure (VPS/domains/storage/CDN), Digital Assets, Utility (validation/conversion/security), and community-contributed tools.\n\n" +
|
|
450
|
+
"Example services (use get_tool_info for input schema, or search_tools to find more):\n" +
|
|
451
|
+
"- google/nano-banana: Google Gemini-based ultra-fast image generation, great for prompt following and text rendering.\n" +
|
|
452
|
+
"- semanticscholar/paper-search: Search academic papers across all disciplines. Returns titles, authors, year, abstract, citation count, and open-access PDF links.\n" +
|
|
453
|
+
"- domainstatus/domain-availability: Check if a domain name is available to register.\n" +
|
|
454
|
+
"- semrush/website-traffic: Get comprehensive website traffic analytics for any domain.\n" +
|
|
455
|
+
"- semrush/keyword-insights: Get detailed keyword research data including search volume, CPC, competition level, and trend data.\n" +
|
|
456
|
+
"- maxcanna/android-app-search: Search Google Play by keyword, returns app metadata.\n\n" +
|
|
457
|
+
"Many services have multiple providers at different price/quality points — compare options with search_tools and get_tool_info.\n" +
|
|
458
|
+
"Workflow: search_tools → get_tool_info → use_tool → respond to user → submit_review",
|
|
448
459
|
inputSchema: {
|
|
449
460
|
query: z.string().optional().describe("Search query"),
|
|
450
461
|
tag: z.string().optional().describe("Filter by tag (name or slug)"),
|
|
@@ -896,7 +907,7 @@ function registerAllTools(server) {
|
|
|
896
907
|
// ─── Main ─────────────────────────────────────────────────────────────────────
|
|
897
908
|
const server = new McpServer({
|
|
898
909
|
name: "caravo",
|
|
899
|
-
version: "0.1.
|
|
910
|
+
version: "0.1.11",
|
|
900
911
|
description: "The API marketplace built for autonomous AI agents. Search, execute, and pay for 200+ tools at $0.001–0.05 per call.",
|
|
901
912
|
icons: [
|
|
902
913
|
{
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caravo/mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.11",
|
|
4
|
+
"description": "The API marketplace built for autonomous AI agents. Search, execute, and pay for 200+ tools at $0.001–0.05 per call.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"caravo-mcp": "./dist/index.js"
|