@kkauto/kkauto-mcp 0.3.5 → 0.3.6
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 +3 -4
- package/dist/server.js +1 -1
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -19,11 +19,11 @@ The adapter stays thin by design: it uses the same `/api/v2/*` routes as normal
|
|
|
19
19
|
- Node.js 20 or newer.
|
|
20
20
|
- Active kkAuto API token from `/wtadmin/mcp` or `/wtadmin/token?type=api`.
|
|
21
21
|
- Tenant-aware base URL for SaaS, or the selfhost app base URL.
|
|
22
|
-
- npm/npx access to `@kkauto/kkauto-mcp@0.3.
|
|
22
|
+
- npm/npx access to `@kkauto/kkauto-mcp@0.3.6` after publish, or a local checkout for development.
|
|
23
23
|
|
|
24
24
|
## Client Setup With npx
|
|
25
25
|
|
|
26
|
-
The package release target is `@kkauto/kkauto-mcp@0.3.
|
|
26
|
+
The package release target is `@kkauto/kkauto-mcp@0.3.6`, so MCP clients can run it with `npx` without copying the website repository after publish:
|
|
27
27
|
|
|
28
28
|
Recommended setup:
|
|
29
29
|
|
|
@@ -56,7 +56,6 @@ For a private npm mirror/registry, configure npm auth/registry on the client mac
|
|
|
56
56
|
## Local Development
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
cd mcp
|
|
60
59
|
npm install
|
|
61
60
|
npm run build
|
|
62
61
|
```
|
|
@@ -90,7 +89,7 @@ Local checkout config for development:
|
|
|
90
89
|
"mcpServers": {
|
|
91
90
|
"kkauto": {
|
|
92
91
|
"command": "node",
|
|
93
|
-
"args": ["/absolute/path/on-your-client-machine/kkauto
|
|
92
|
+
"args": ["/absolute/path/on-your-client-machine/kkauto-mcp/dist/server.js"],
|
|
94
93
|
"env": {
|
|
95
94
|
"KK_API_BASE_URL": "https://tenant.example.com",
|
|
96
95
|
"KK_API_TOKEN": "paste-api-token-here",
|
package/dist/server.js
CHANGED
|
@@ -13,7 +13,7 @@ async function main() {
|
|
|
13
13
|
const client = new KkAutoApiClient(config);
|
|
14
14
|
const server = new McpServer({
|
|
15
15
|
name: 'kkauto-mcp',
|
|
16
|
-
version: '0.3.
|
|
16
|
+
version: '0.3.6',
|
|
17
17
|
});
|
|
18
18
|
registerFbPostTools(server, client, config);
|
|
19
19
|
registerSourcePostTools(server, client, config);
|
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kkauto/kkauto-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "MCP stdio adapter for kkAuto API v2 content tools.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
9
|
-
"directory": "mcp"
|
|
8
|
+
"url": "git+https://github.com/kkauto-net/kkauto-mcp.git"
|
|
10
9
|
},
|
|
11
10
|
"keywords": [
|
|
12
11
|
"kkauto",
|