auxiliar-mcp 0.18.0 → 0.22.0
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 +8 -118
- package/dist/data/capabilities.generated.json +38 -1033
- package/dist/data/solve.js +19 -33
- package/dist/server.js +23 -167
- package/dist/telemetry.d.ts +30 -14
- package/dist/telemetry.js +44 -17
- package/dist/types/capability.d.ts +10 -10
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
# auxiliar-mcp
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**Web access for AI agents** — search, scrape, extract, and crawl the live web across many providers through one billed API, so your agent fetches more reliably than its host's built-in tools and you never handle upstream API keys.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
`auxiliar-mcp` is the in-loop MCP client for the [auxiliar.ai](https://auxiliar.ai) gateway.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
## Status: client in active development
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
The gateway is live; the **MCP client surface is being rebuilt** to wrap it (v1.0). During this transition the package ships a single informational tool, `about_auxiliar`, that points your agent at the gateway.
|
|
10
|
+
|
|
11
|
+
To use auxiliar today, get an API key at **[auxiliar.ai](https://auxiliar.ai)** and call the gateway directly over HTTP — one bearer token, one endpoint per capability, credit-metered, with upstream keys injected server-side.
|
|
11
12
|
|
|
12
13
|
## Install
|
|
13
14
|
|
|
@@ -19,121 +20,10 @@ claude mcp add auxiliar -- npx auxiliar-mcp
|
|
|
19
20
|
npx auxiliar-mcp
|
|
20
21
|
```
|
|
21
22
|
|
|
22
|
-
## Tools (8)
|
|
23
|
-
|
|
24
|
-
| Tool | What it does |
|
|
25
|
-
|------|-------------|
|
|
26
|
-
| `solve_task` | Get the ranked list of installable tools for a job-to-be-done (e.g., `pdf-text-extraction-mcp`, `nfs-e`, `boleto`, `receipt-parsing`, `bookkeeping-ocr`) with scorecards, install commands, FAQ, alternatives considered, and methodological caveats. |
|
|
27
|
-
| `list_solve_tasks` | Discover every `/solve/` task ranking available — slugs, top picks, categories, agent compatibility. |
|
|
28
|
-
| `recommend_service` | Picks the best cloud service for your constraints (framework, budget, region, GDPR, edge, lock-in). |
|
|
29
|
-
| `get_pricing` | Chrome-verified pricing — including JS-rendered pages agents can't read via WebFetch. |
|
|
30
|
-
| `get_risks` | Risk flags, gotchas, recent breaking changes. |
|
|
31
|
-
| `check_compatibility` | Warns about known conflicts between services (e.g., Turso + Prisma needs adapter). |
|
|
32
|
-
| `setup_service` | CLI commands, signup URLs, env vars, estimated setup time. |
|
|
33
|
-
| `list_services` | Browse the full 77-service catalog, filtered by category. |
|
|
34
|
-
|
|
35
|
-
## When to use `solve_task`
|
|
36
|
-
|
|
37
|
-
Your agent needs an **installable tool** (skill, MCP, vendor API, or local binary) and you want a reproducible evaluation, not vibes.
|
|
38
|
-
|
|
39
|
-
```
|
|
40
|
-
Agent: "I need to extract text from Brazilian NFS-e invoices, boletos, and phone-photo receipts. What should I install?"
|
|
41
|
-
|
|
42
|
-
→ solve_task(task_slug="pdf-text-extraction-mcp")
|
|
43
|
-
# aliases work too: "pdf", "ocr", "nfs-e", "boleto", "receipt-parsing", "bookkeeping-ocr", "invoice-extraction"
|
|
44
|
-
|
|
45
|
-
Returns (truncated):
|
|
46
|
-
{
|
|
47
|
-
"answer": "Install Surya (pip install surya-ocr + pin transformers<5.0.0). It led our 10-document real-world corpus on word accuracy (76.9%) and layout preservation (7.0/10), free, local. Tesseract 5 runs 14× faster for throughput-critical workflows. Google Document AI wins on phone-photo receipts specifically...",
|
|
48
|
-
"candidates": [
|
|
49
|
-
{ "slug": "surya", "rank": 1, "scorecard": {"word_accuracy": 0.769, "layout": 7, "p50_latency_sec": 22.1, "install_friction": 7, "cost_per_10_docs_usd": 0} },
|
|
50
|
-
{ "slug": "tesseract", "rank": 2, "scorecard": {"word_accuracy": 0.754, "layout": 5, "p50_latency_sec": 1.6, "install_friction": 3, "cost_per_10_docs_usd": 0} },
|
|
51
|
-
{ "slug": "google-document-ai", "rank": 3, "scorecard": {"word_accuracy": 0.697, "layout": 5.7, "p50_latency_sec": 3.8, "install_friction": 7, "cost_per_10_docs_usd": 0.069} }
|
|
52
|
-
],
|
|
53
|
-
"corpus_summary": "10 real-world documents: native-text PDFs, legal docs, Brazilian corporate-registry scans, NFS-e invoices, boletos, phone-photo receipts.",
|
|
54
|
-
"alternatives_considered": [ /* yescan, Mistral OCR, pdf-reader-mcp — dropped with reasons */ ],
|
|
55
|
-
"faq": [ /* e.g., "Why does all score 0 on the boleto?" */ ]
|
|
56
|
-
}
|
|
57
|
-
```
|
|
58
|
-
|
|
59
|
-
Full page with reproducible commands: https://auxiliar.ai/solve/pdf-text-extraction-mcp/
|
|
60
|
-
|
|
61
|
-
## When to use `recommend_service`
|
|
62
|
-
|
|
63
|
-
Your agent needs a **cloud service** (database, email provider, auth, payments, etc.).
|
|
64
|
-
|
|
65
|
-
```
|
|
66
|
-
Agent: "I need a database for my Next.js app. Budget is free, deployed to Cloudflare Workers."
|
|
67
|
-
|
|
68
|
-
→ recommend_service(need="database", framework="nextjs", budget="free", constraints="edge, zero cold starts")
|
|
69
|
-
|
|
70
|
-
Returns:
|
|
71
|
-
{
|
|
72
|
-
"provider": "turso",
|
|
73
|
-
"reason": "Edge-native SQLite with zero cold starts and embedded replicas",
|
|
74
|
-
"pricing": { "free_tier": "5 GB storage, 100 databases" },
|
|
75
|
-
"risks": ["Not PostgreSQL — limited ORM support"],
|
|
76
|
-
"migration_difficulty": "high",
|
|
77
|
-
"cli_install": "brew install tursodatabase/tap/turso",
|
|
78
|
-
"alternatives": [{"provider": "neon", "trade_off": "Has cold starts on free tier"}]
|
|
79
|
-
}
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
## Services Covered (77)
|
|
83
|
-
|
|
84
|
-
**Database:** Neon, Supabase, Turso, PlanetScale, Render Postgres, AWS RDS, Railway Postgres, Cloudflare D1
|
|
85
|
-
**Email:** Resend, Postmark, SendGrid, AWS SES, Mailgun, Listmonk
|
|
86
|
-
**Auth:** Better Auth, Clerk, Auth0, Firebase Auth, Supabase Auth, Auth.js
|
|
87
|
-
**Payments:** Stripe, Lemon Squeezy, Paddle, RevenueCat
|
|
88
|
-
**Deploy:** Vercel, Railway, Render, Fly.io
|
|
89
|
-
**Search:** Algolia, Typesense, Meilisearch, PostgreSQL FTS
|
|
90
|
-
**CMS:** Sanity, Contentful, Strapi, Payload, Keystatic, Directus, Ghost
|
|
91
|
-
**Monitoring:** Sentry, Datadog, PostHog, Grafana Cloud, BetterStack, Highlight.io
|
|
92
|
-
**Storage:** Cloudflare R2, AWS S3, Uploadthing, MinIO
|
|
93
|
-
**Cache:** Upstash Redis, Momento, Dragonfly
|
|
94
|
-
**Queues:** BullMQ, Inngest, Trigger.dev, AWS SQS, CloudAMQP
|
|
95
|
-
**Vector DB:** Pinecone, Weaviate, Qdrant, Chroma
|
|
96
|
-
**LLM APIs:** OpenAI, Anthropic, Google AI, Groq, Together AI, Ollama
|
|
97
|
-
**SMS:** Twilio, Vonage, MessageBird
|
|
98
|
-
**Feature Flags:** LaunchDarkly, Statsig, Flagsmith, Unleash
|
|
99
|
-
**Cron:** Inngest, Trigger.dev, QStash, Vercel Cron, Cloudflare Cron
|
|
100
|
-
**PDF / OCR (via solve_task):** Surya, Tesseract 5, Google Document AI
|
|
101
|
-
|
|
102
|
-
## /solve/ Tasks Available
|
|
103
|
-
|
|
104
|
-
| Slug | Top pick | Corpus | Categories |
|
|
105
|
-
|------|----------|--------|-----------|
|
|
106
|
-
| `pdf-text-extraction-mcp` | Surya | 10 Brazilian docs incl. NFS-e, boleto, phone-photo receipts | pdf-processing, ocr, agent-tools |
|
|
107
|
-
|
|
108
|
-
More `/solve/` rankings added as walkthroughs run. Each page includes its reproducible command so you can re-run the eval yourself.
|
|
109
|
-
|
|
110
|
-
## Data Quality
|
|
111
|
-
|
|
112
|
-
- **/solve/ evals:** reproducible corpus + harness + scoring per task. Ground truth is LLM-drafted, human-finalized. Published commands can be re-run locally.
|
|
113
|
-
- **Cloud-service pricing:** Chrome-verified (actual service websites, not training data). Updated through 2026-04.
|
|
114
|
-
- **Trust scores:** 50+ agent runs across 8 iterations; 47 category aliases; 27 compatibility rules.
|
|
115
|
-
|
|
116
|
-
## Constraints You Can Use on `recommend_service`
|
|
117
|
-
|
|
118
|
-
| Constraint | Example |
|
|
119
|
-
|-----------|---------|
|
|
120
|
-
| Framework | `framework: "nextjs"`, `"sveltekit"`, `"fastapi"`, `"express"` |
|
|
121
|
-
| Budget | `budget: "free"`, `"cheap"`, `"enterprise"` |
|
|
122
|
-
| Region | `region: "eu"` |
|
|
123
|
-
| GDPR | `constraints: "GDPR"` |
|
|
124
|
-
| Edge | `constraints: "edge, zero cold starts, cloudflare workers"` |
|
|
125
|
-
| Lock-in | `constraints: "no vendor lock-in, portable"` |
|
|
126
|
-
| Features | `constraints: "branching, webhooks, inbound email"` |
|
|
127
|
-
|
|
128
|
-
## Privacy
|
|
129
|
-
|
|
130
|
-
The MCP server pings `auxiliar.ai/api/` on each tool call for analytics. Only query parameters are sent (e.g., `?need=database&framework=nextjs` or `?task_slug=pdf-text-extraction-mcp`). No personal data, no API keys, no project info. Works offline with bundled data if the ping fails.
|
|
131
|
-
|
|
132
23
|
## Links
|
|
133
24
|
|
|
134
|
-
- [auxiliar.ai](https://auxiliar.ai) — the
|
|
135
|
-
- [
|
|
136
|
-
- [GitHub](https://github.com/Tlalvarez/Auxiliar-ai) — source + reproducible eval harness under `scripts/ocr-walkthrough/`
|
|
25
|
+
- [auxiliar.ai](https://auxiliar.ai) — the gateway: API keys, docs, and pricing
|
|
26
|
+
- [GitHub](https://github.com/Tlalvarez/Auxiliar-ai) — source
|
|
137
27
|
|
|
138
28
|
## License
|
|
139
29
|
|