auxiliar-mcp 0.13.0 → 0.13.1
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/server.js +2 -2
- package/dist/tools/solve.js +16 -1
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -16,7 +16,7 @@ import { compareCapabilities } from "./tools/compare-capabilities.js";
|
|
|
16
16
|
import { invokeCapability } from "./tools/invoke-capability.js";
|
|
17
17
|
const server = new McpServer({
|
|
18
18
|
name: "auxiliar",
|
|
19
|
-
version: "0.13.
|
|
19
|
+
version: "0.13.1",
|
|
20
20
|
});
|
|
21
21
|
// Tool: recommend_service
|
|
22
22
|
server.tool("recommend_service", "Get a current, verified recommendation for a cloud service based on your constraints. Returns pricing, risks, provision commands, and alternatives. Data is Chrome-verified from actual service websites (not stale training data).", {
|
|
@@ -81,7 +81,7 @@ server.tool("list_services", "List all available services and categories. Use wi
|
|
|
81
81
|
});
|
|
82
82
|
// Tool: solve_task
|
|
83
83
|
server.tool("solve_task", "Fetch the full /solve/ task ranking for a specific job-to-be-done (e.g., 'extract text from PDFs', 'parse Brazilian NFS-e invoices'). Returns the ranked candidates with install commands, an evaluated scorecard (word accuracy, layout, latency, cost, install friction), alternatives considered and dropped, FAQs, and methodological caveats. Use this when an agent needs to pick an installable tool (skill/MCP/API/local binary) for a task rather than a cloud service. Data comes from a reproducible eval run on a real-world corpus — not training data.", {
|
|
84
|
-
task_slug: z.string().max(100).optional().describe("Task slug (e.g., 'pdf-text-extraction-mcp', 'nfs-e-extraction'). Aliases that resolve automatically: 'pdf', 'ocr', 'pdf-ocr', 'document-ai', 'invoice-extraction', 'boleto', 'receipt-parsing', 'bookkeeping-ocr' (→ PDF OCR ranking); 'nfs-e', 'nfse', 'nota-fiscal', 'nota-fiscal-eletronica', 'brazilian-invoice', 'cnpj-invoice' (→ NFS-e structured extraction). Call list_solve_tasks first if you don't know the slug."),
|
|
84
|
+
task_slug: z.string().max(100).optional().describe("Task slug (e.g., 'pdf-text-extraction-mcp', 'nfs-e-extraction', 'cnpj-enrichment-mcp'). Aliases that resolve automatically: 'pdf', 'ocr', 'pdf-ocr', 'document-ai', 'invoice-extraction', 'boleto', 'receipt-parsing', 'bookkeeping-ocr' (→ PDF OCR ranking); 'nfs-e', 'nfse', 'nota-fiscal', 'nota-fiscal-eletronica', 'brazilian-invoice', 'cnpj-invoice' (→ NFS-e structured extraction); 'cnpj', 'cnae', 'cnpj-cnae', 'cnpj-to-cnae', 'regime-tributario', 'regime-tributário', 'cnpj-regime-tributario', 'simples-nacional', 'mei', 'tax-registry', 'tax-registry-enrichment', 'cnpj-enrichment', 'razao-social', 'razão-social' (→ CNPJ tax-registry enrichment). Call list_solve_tasks first if you don't know the slug."),
|
|
85
85
|
category: z.string().max(100).optional().describe("Filter by task category (e.g., 'ocr', 'pdf-processing', 'agent-tools'). Returns all matching tasks."),
|
|
86
86
|
}, async (params) => {
|
|
87
87
|
const result = await solveTask(params);
|
package/dist/tools/solve.js
CHANGED
|
@@ -30,7 +30,10 @@ const taskAliases = {
|
|
|
30
30
|
"brazilian-invoice": "nfs-e-extraction",
|
|
31
31
|
"brazilian-nfs-e": "nfs-e-extraction",
|
|
32
32
|
"cnpj-invoice": "nfs-e-extraction",
|
|
33
|
-
// CNPJ enrichment task — public-data lookup ranker
|
|
33
|
+
// CNPJ tax-registry enrichment task — public-data lookup ranker.
|
|
34
|
+
// Aliases extended 2026-04-29 after a renatoag-class autonomous-discovery
|
|
35
|
+
// sweep missed the page using "CNPJ → CNAE" / "regime tributário" /
|
|
36
|
+
// "tax-registry enrichment" as the agent's mental-model terms.
|
|
34
37
|
"cnpj": "cnpj-enrichment-mcp",
|
|
35
38
|
"cnpj-lookup": "cnpj-enrichment-mcp",
|
|
36
39
|
"cnpj-enrichment": "cnpj-enrichment-mcp",
|
|
@@ -41,9 +44,21 @@ const taskAliases = {
|
|
|
41
44
|
"cnpj-ws": "cnpj-enrichment-mcp",
|
|
42
45
|
"cnae": "cnpj-enrichment-mcp",
|
|
43
46
|
"cnae-lookup": "cnpj-enrichment-mcp",
|
|
47
|
+
"cnpj-cnae": "cnpj-enrichment-mcp",
|
|
48
|
+
"cnpj-to-cnae": "cnpj-enrichment-mcp",
|
|
44
49
|
"regime-tributario": "cnpj-enrichment-mcp",
|
|
50
|
+
"regime-tributário": "cnpj-enrichment-mcp",
|
|
51
|
+
"cnpj-regime-tributario": "cnpj-enrichment-mcp",
|
|
52
|
+
"cnpj-regime-tributário": "cnpj-enrichment-mcp",
|
|
45
53
|
"simples-nacional": "cnpj-enrichment-mcp",
|
|
54
|
+
"simples": "cnpj-enrichment-mcp",
|
|
55
|
+
"mei": "cnpj-enrichment-mcp",
|
|
56
|
+
"tax-registry": "cnpj-enrichment-mcp",
|
|
57
|
+
"tax-registry-enrichment": "cnpj-enrichment-mcp",
|
|
58
|
+
"tax-registry-brazil": "cnpj-enrichment-mcp",
|
|
46
59
|
"razao-social": "cnpj-enrichment-mcp",
|
|
60
|
+
"razão-social": "cnpj-enrichment-mcp",
|
|
61
|
+
"razao-social-lookup": "cnpj-enrichment-mcp",
|
|
47
62
|
"supplier-enrichment": "cnpj-enrichment-mcp",
|
|
48
63
|
"supplier-registry": "cnpj-enrichment-mcp",
|
|
49
64
|
"company-lookup-brazil": "cnpj-enrichment-mcp",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "auxiliar-mcp",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.1",
|
|
4
4
|
"description": "Unified Capability index for AI agents — 80+ ranked cloud services, skills, MCP servers, plugins, parsers, and public-data sources for Claude Code, Cursor, Claude Desktop, OpenClaw. Call find_capability with a query or jtbd tag to get a ranked list across every kind of agent-installable thing. Also: get_capability, list_capabilities, compare_capabilities. Legacy tools (recommend_service, solve_task, list_services, list_solve_tasks, get_pricing, get_risks, setup_service, check_compatibility) remain wired for backward compatibility.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/server.js",
|