@alfe.ai/myob-mcp 0.3.0 → 0.3.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 +16 -0
- package/package.json +13 -3
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# @alfe.ai/myob-mcp
|
|
2
|
+
|
|
3
|
+
MYOB Business MCP server — direct API integration with Alfe OAuth credentials and automatic token refresh
|
|
4
|
+
|
|
5
|
+
Part of [**Alfe**](https://alfe.ai) — the operating system for AI agents: build, deploy, and run agents with persistent memory, identity, integrations, and channels. See the [documentation](https://docs.alfe.ai) to get started.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @alfe.ai/myob-mcp
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Links
|
|
14
|
+
|
|
15
|
+
- 🌐 Website: <https://alfe.ai>
|
|
16
|
+
- 📚 Docs: <https://docs.alfe.ai>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/myob-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "MYOB Business MCP server — direct API integration with Alfe OAuth credentials and automatic token refresh",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/server.js",
|
|
@@ -19,10 +19,20 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
21
21
|
"zod": "^4.0.5",
|
|
22
|
-
"@alfe.ai/config": "0.
|
|
23
|
-
"@alfe.ai/agent-api-client": "0.
|
|
22
|
+
"@alfe.ai/config": "0.3.0",
|
|
23
|
+
"@alfe.ai/agent-api-client": "0.4.0"
|
|
24
24
|
},
|
|
25
25
|
"license": "UNLICENSED",
|
|
26
|
+
"homepage": "https://alfe.ai",
|
|
27
|
+
"author": "Alfe (https://alfe.ai)",
|
|
28
|
+
"keywords": [
|
|
29
|
+
"alfe",
|
|
30
|
+
"ai-agents",
|
|
31
|
+
"agent",
|
|
32
|
+
"llm",
|
|
33
|
+
"mcp",
|
|
34
|
+
"model-context-protocol"
|
|
35
|
+
],
|
|
26
36
|
"scripts": {
|
|
27
37
|
"build": "tsdown",
|
|
28
38
|
"dev": "tsdown --watch",
|