@frihet/mcp-server 1.5.0 → 1.5.2
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 +2 -3
- package/dist/index.js +3 -3
- package/package.json +2 -2
- package/scripts/postinstall.js +1 -1
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<a href="https://www.npmjs.com/package/@frihet/mcp-server"><img src="https://img.shields.io/npm/v/@frihet/mcp-server?style=flat&color=18181b&labelColor=09090b" alt="npm version"></a>
|
|
16
16
|
<a href="https://www.npmjs.com/package/@frihet/mcp-server"><img src="https://img.shields.io/npm/dm/@frihet/mcp-server?style=flat&color=18181b&labelColor=09090b&label=downloads" alt="npm downloads"></a>
|
|
17
17
|
<a href="https://smithery.ai/server/frihet/frihet-mcp"><img src="https://smithery.ai/badge/frihet/frihet-mcp" alt="Smithery installs"></a>
|
|
18
|
-
<a href="https://registry.modelcontextprotocol.io/servers/io.
|
|
18
|
+
<a href="https://registry.modelcontextprotocol.io/servers/io.frihet-erp"><img src="https://img.shields.io/badge/MCP_Registry-io.frihet%2Ferp-4A90D9?style=flat&logo=anthropic&logoColor=white" alt="MCP Registry"></a>
|
|
19
19
|
<a href="https://github.com/Frihet-io/frihet-mcp/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-18181b?style=flat&labelColor=09090b" alt="license"></a>
|
|
20
20
|
<img src="https://img.shields.io/badge/tools-52-18181b?style=flat&labelColor=09090b" alt="52 tools">
|
|
21
21
|
<img src="https://img.shields.io/badge/node-%3E%3D18-18181b?style=flat&labelColor=09090b" alt="node >=18">
|
|
@@ -188,7 +188,7 @@ If you need to digitize paper invoices or receipts, extract the data first (e.g.
|
|
|
188
188
|
|
|
189
189
|
---
|
|
190
190
|
|
|
191
|
-
## Tools (
|
|
191
|
+
## Tools (52)
|
|
192
192
|
|
|
193
193
|
### Invoices (6)
|
|
194
194
|
|
|
@@ -475,7 +475,6 @@ npm run build # must pass before submitting
|
|
|
475
475
|
- [API reference](https://docs.frihet.io/desarrolladores/api-rest) -- REST API
|
|
476
476
|
- [MCP server docs](https://docs.frihet.io/desarrolladores/mcp-server) -- Setup guides, troubleshooting
|
|
477
477
|
- [npm](https://www.npmjs.com/package/@frihet/mcp-server) -- Package registry
|
|
478
|
-
- [MCP Registry](https://registry.modelcontextprotocol.io/servers/io.github.berthelius/frihet) -- Official MCP Registry
|
|
479
478
|
- [Smithery](https://smithery.ai/server/frihet/frihet-mcp) -- Smithery marketplace
|
|
480
479
|
- [Remote endpoint](https://mcp.frihet.io) -- Hosted MCP server (Cloudflare Workers)
|
|
481
480
|
- [OpenAPI spec](https://api.frihet.io/openapi.yaml) -- Machine-readable API definition
|
package/dist/index.js
CHANGED
|
@@ -49,7 +49,7 @@ function main() {
|
|
|
49
49
|
const client = new FrihetClient(apiKey, baseUrl);
|
|
50
50
|
const server = new McpServer({
|
|
51
51
|
name: "frihet-erp",
|
|
52
|
-
version: "1.
|
|
52
|
+
version: "1.5.2",
|
|
53
53
|
description: "AI-native MCP server for Frihet ERP — invoices, expenses, clients, products, quotes, and webhooks. " +
|
|
54
54
|
"Provides 52 tools (including business context, monthly summaries, quarterly taxes, invoice duplication, and CRM subcollections), " +
|
|
55
55
|
"11 resources (8 static + 3 live), and 10 workflow prompts for business management " +
|
|
@@ -66,12 +66,12 @@ function main() {
|
|
|
66
66
|
// Connect via stdio transport
|
|
67
67
|
const transport = new StdioServerTransport();
|
|
68
68
|
server.connect(transport).then(() => {
|
|
69
|
-
console.error("[frihet-mcp] v1.
|
|
69
|
+
console.error("[frihet-mcp] v1.5.2 | 52 tools | https://github.com/Frihet-io/frihet-mcp");
|
|
70
70
|
log({
|
|
71
71
|
level: "info",
|
|
72
72
|
message: "Frihet MCP server running on stdio",
|
|
73
73
|
operation: "startup",
|
|
74
|
-
metadata: { version: "1.
|
|
74
|
+
metadata: { version: "1.5.2", transport: "stdio" },
|
|
75
75
|
});
|
|
76
76
|
}).catch((error) => {
|
|
77
77
|
log({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frihet/mcp-server",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "AI-native MCP server for business management — invoices, expenses, clients, products, quotes, webhooks, CRM. 52 tools with business intelligence. Works with Claude, Cursor, Windsurf, Cline.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"type": "git",
|
|
50
50
|
"url": "git+https://github.com/Frihet-io/frihet-mcp.git"
|
|
51
51
|
},
|
|
52
|
-
"mcpName": "io.
|
|
52
|
+
"mcpName": "io.frihet/erp",
|
|
53
53
|
"homepage": "https://docs.frihet.io/desarrolladores/mcp-server",
|
|
54
54
|
"funding": {
|
|
55
55
|
"type": "individual",
|
package/scripts/postinstall.js
CHANGED
|
@@ -4,7 +4,7 @@ if (process.env.CI || process.env.FRIHET_QUIET) process.exit(0);
|
|
|
4
4
|
|
|
5
5
|
console.log(`
|
|
6
6
|
╔══════════════════════════════════════════════════════╗
|
|
7
|
-
║ @frihet/mcp-server v1.
|
|
7
|
+
║ @frihet/mcp-server v1.5.2 installed ║
|
|
8
8
|
║ ║
|
|
9
9
|
║ Docs: https://docs.frihet.io/mcp ║
|
|
10
10
|
║ GitHub: https://github.com/Frihet-io/frihet-mcp ║
|