@nubiia/mcp-freematica 0.6.3 → 0.6.4
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 +27 -1
- package/package.json +21 -4
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# mcp-freematica
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@nubiia/mcp-freematica)
|
|
4
|
+
[](./LICENSE)
|
|
5
|
+
[](https://nubiia.es)
|
|
6
|
+
|
|
7
|
+
MCP server que expone operaciones del API REST de Freemática (ERP: facturación, cartera, proveedores, contabilidad, personal) para ser consumidas por asistentes de IA como Claude.
|
|
8
|
+
|
|
9
|
+
> Built and maintained by **[Nubiia](https://nubiia.es)** — automatización e integraciones con IA para negocios (MCP, Holded, Pipedrive y más). ¿Quieres algo así para tu empresa? Escríbenos en **[nubiia.es](https://nubiia.es)**.
|
|
4
10
|
|
|
5
11
|
## Stack
|
|
6
12
|
|
|
@@ -510,6 +516,26 @@ node dist/index.js
|
|
|
510
516
|
- API: `apidocs/Freematica API - Complete Collection.postman_collection.json`
|
|
511
517
|
- CHANGELOG: `CHANGELOG.md`
|
|
512
518
|
|
|
519
|
+
## About Nubiia
|
|
520
|
+
|
|
521
|
+
This MCP server is built and maintained by **[Nubiia](https://nubiia.es)**.
|
|
522
|
+
|
|
523
|
+
[Nubiia](https://nubiia.es) ayuda a empresas a **automatizar procesos e integrar sus herramientas con IA**: servidores MCP a medida, integraciones con ERPs y CRMs (Freemática, Holded, Pipedrive…), y agentes que conectan tus datos de negocio con asistentes como Claude. Este `@nubiia/mcp-freematica` es un ejemplo open source de lo que hacemos.
|
|
524
|
+
|
|
525
|
+
👉 ¿Quieres una integración o automatización con IA para tu negocio? **[nubiia.es](https://nubiia.es)** · ✉️ [hola@nubiia.es](mailto:hola@nubiia.es)
|
|
526
|
+
|
|
527
|
+
## Author
|
|
528
|
+
|
|
529
|
+
Built by **[Nubiia](https://nubiia.es)** — [nubiia.es](https://nubiia.es) · [hola@nubiia.es](mailto:hola@nubiia.es)
|
|
530
|
+
|
|
531
|
+
Maintainer: Samuel Fraga — [GitHub](https://github.com/iamsamuelfraga)
|
|
532
|
+
|
|
533
|
+
## Links
|
|
534
|
+
|
|
535
|
+
- [Nubiia — AI automation & integrations](https://nubiia.es)
|
|
536
|
+
- [npm: @nubiia/mcp-freematica](https://www.npmjs.com/package/@nubiia/mcp-freematica)
|
|
537
|
+
- [GitHub: nubiia-dev/mcp-freematica](https://github.com/nubiia-dev/mcp-freematica)
|
|
538
|
+
|
|
513
539
|
## Licencia
|
|
514
540
|
|
|
515
541
|
MIT — ver `LICENSE`.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nubiia/mcp-freematica",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"description": "MCP server for Freemática REST API
|
|
3
|
+
"version": "0.6.4",
|
|
4
|
+
"description": "MCP server for the Freemática ERP REST API: invoicing, accounts receivable, suppliers, accounting and HR data for AI assistants like Claude. Built by Nubiia.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"bugs": {
|
|
34
34
|
"url": "https://github.com/nubiia-dev/mcp-freematica/issues"
|
|
35
35
|
},
|
|
36
|
-
"homepage": "https://
|
|
36
|
+
"homepage": "https://nubiia.es",
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
@@ -44,9 +44,26 @@
|
|
|
44
44
|
"mcp",
|
|
45
45
|
"model-context-protocol",
|
|
46
46
|
"freematica",
|
|
47
|
+
"freematica-api",
|
|
48
|
+
"erp",
|
|
49
|
+
"invoicing",
|
|
50
|
+
"facturacion",
|
|
51
|
+
"accounting",
|
|
52
|
+
"contabilidad",
|
|
53
|
+
"cartera",
|
|
54
|
+
"api",
|
|
55
|
+
"claude",
|
|
56
|
+
"anthropic",
|
|
57
|
+
"ai",
|
|
58
|
+
"llm",
|
|
59
|
+
"automation",
|
|
47
60
|
"nubiia"
|
|
48
61
|
],
|
|
49
|
-
"author":
|
|
62
|
+
"author": {
|
|
63
|
+
"name": "Nubiia",
|
|
64
|
+
"email": "hola@nubiia.es",
|
|
65
|
+
"url": "https://nubiia.es"
|
|
66
|
+
},
|
|
50
67
|
"license": "MIT",
|
|
51
68
|
"dependencies": {
|
|
52
69
|
"@modelcontextprotocol/sdk": "^1.27.1",
|