@attrkit/mcp 0.3.0 → 0.3.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/cli.js +1 -1
- package/package.json +7 -2
package/dist/cli.js
CHANGED
|
@@ -71,7 +71,7 @@ function toToolResult(result) {
|
|
|
71
71
|
structuredContent: structured
|
|
72
72
|
};
|
|
73
73
|
}
|
|
74
|
-
var SERVER_VERSION = "0.3.
|
|
74
|
+
var SERVER_VERSION = "0.3.1";
|
|
75
75
|
var periodSchema = z.enum(["7d", "30d", "90d", "all"]).describe("Reporting window. Defaults to 30d.").optional();
|
|
76
76
|
var appIdSchema = z.string().describe("Optional app id to scope the result to one app.").optional();
|
|
77
77
|
var requiredAppIdSchema = z.string().describe("The AttrKit app id.");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@attrkit/mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "AttrKit's stdio MCP server for its public Management API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"attrkit",
|
|
@@ -11,13 +11,18 @@
|
|
|
11
11
|
"agent-tools"
|
|
12
12
|
],
|
|
13
13
|
"homepage": "https://attrikit.io/en/docs/mcp",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/KamyarTaher/attrikit.git",
|
|
17
|
+
"directory": "packages/mcp"
|
|
18
|
+
},
|
|
14
19
|
"license": "UNLICENSED",
|
|
15
20
|
"type": "module",
|
|
16
21
|
"engines": {
|
|
17
22
|
"node": ">=18"
|
|
18
23
|
},
|
|
19
24
|
"bin": {
|
|
20
|
-
"attrkit-mcp": "
|
|
25
|
+
"attrkit-mcp": "dist/cli.js"
|
|
21
26
|
},
|
|
22
27
|
"files": [
|
|
23
28
|
"dist",
|