@nordsym/apiclaw 1.7.16 → 1.7.18

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.
Files changed (2) hide show
  1. package/README.md +99 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,99 @@
1
+ # APIClaw
2
+
3
+ The API layer for AI agents. One install. Three tiers of access.
4
+
5
+ [![npm version](https://img.shields.io/npm/v/@nordsym/apiclaw.svg)](https://www.npmjs.com/package/@nordsym/apiclaw)
6
+ [![npm downloads](https://img.shields.io/npm/dw/@nordsym/apiclaw.svg)](https://www.npmjs.com/package/@nordsym/apiclaw)
7
+ [![MCP](https://img.shields.io/badge/MCP-Compatible-blue)](https://modelcontextprotocol.io)
8
+
9
+ 5,300+ installs. 19 Direct Call providers. 22,392 indexed APIs.
10
+
11
+ ## Install
12
+
13
+ ```bash
14
+ npx @nordsym/apiclaw mcp-install
15
+ ```
16
+
17
+ Restart your AI assistant. First 5 API calls are free. Register your email to unlock 50/month.
18
+
19
+ ---
20
+
21
+ ## Three Tiers of Access
22
+
23
+ ### Tier 1: Discovery (22,392 APIs)
24
+
25
+ Search the full API index. Every API ever cataloged. Free, unlimited, no account needed.
26
+
27
+ ```
28
+ discover_apis("weather data for Stockholm")
29
+ -> Weatherstack, Visual Crossing, AccuWeather, OpenWeather...
30
+ ```
31
+
32
+ ### Tier 2: Open API (1,600+ APIs)
33
+
34
+ Public APIs with no auth required. Call them directly through APIClaw. Free.
35
+
36
+ ```
37
+ call_api("frankfurter", "latest", {"from": "USD", "to": "SEK"})
38
+ -> { "rates": { "SEK": 10.85 } }
39
+ ```
40
+
41
+ ### Tier 3: Direct Call (19 Providers)
42
+
43
+ Premium APIs proxied through APIClaw. No keys needed. APIClaw handles auth, rate limiting, and billing.
44
+
45
+ | Provider | What | Category |
46
+ |----------|------|----------|
47
+ | OpenRouter | 100+ LLMs (GPT-4, Claude, Llama) | AI |
48
+ | Replicate | ML models (image, video, audio) | AI |
49
+ | Groq | Fast LLM inference | AI |
50
+ | Mistral | Mistral models | AI |
51
+ | Cohere | NLP and embeddings | AI |
52
+ | Together AI | Open-source model hosting | AI |
53
+ | Stability AI | Image generation | AI |
54
+ | Brave Search | Privacy-first web search | Search |
55
+ | Serper | Google search results | Search |
56
+ | Firecrawl | Web scraping and crawling | Scraping |
57
+ | ElevenLabs | Text-to-speech | Voice |
58
+ | Deepgram | Speech-to-text | Voice |
59
+ | AssemblyAI | Audio intelligence | Voice |
60
+ | Twilio | SMS and voice calls | Communication |
61
+ | 46elks | SMS (Nordic) | Communication |
62
+ | Resend | Transactional email | Email |
63
+ | E2B | Code execution sandbox | Dev Tools |
64
+ | GitHub | Repository and code access | Dev Tools |
65
+ | APILayer | 27 APIs (finance, geo, scraping, news) | Multi-API |
66
+
67
+ ---
68
+
69
+ ## Tools
70
+
71
+ | Tool | What |
72
+ |------|------|
73
+ | `discover_apis` | Search 22,392 APIs by capability |
74
+ | `get_api_details` | Full specs, pricing, auth |
75
+ | `call_api` | Execute through APIClaw proxy |
76
+ | `list_connected` | See available Direct Call providers |
77
+ | `check_balance` | Usage and remaining calls |
78
+ | `register_owner` | Register email, unlock 50 calls/month |
79
+
80
+ ## Pricing
81
+
82
+ | Tier | Price | Access |
83
+ |------|-------|--------|
84
+ | Unregistered | Free | 5 API calls, unlimited search |
85
+ | Free | Free | 50 calls/month, full dashboard |
86
+ | Founding Backer | $199 one-time | Unlimited until 2027 |
87
+ | Enterprise | Custom | [Book a call](https://apiclaw.nordsym.com/book) |
88
+
89
+ ## For API Providers
90
+
91
+ List your APIs on APIClaw. Get discovered by AI agents. Track usage, discoveries, and calls in your dashboard.
92
+
93
+ [Register as provider](https://apiclaw.nordsym.com/providers/register)
94
+
95
+ ---
96
+
97
+ [Dashboard](https://apiclaw.nordsym.com) - [Docs](https://apiclaw.nordsym.com/docs) - [Book a Call](https://apiclaw.nordsym.com/book)
98
+
99
+ MIT License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nordsym/apiclaw",
3
- "version": "1.7.16",
3
+ "version": "1.7.18",
4
4
  "description": "The API layer for AI agents. Dashboard + 22K APIs + 18 Direct Call providers. MCP native.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",