yazio-mcp 0.0.1 → 0.0.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.
Files changed (3) hide show
  1. package/README.md +5 -4
  2. package/dist/index.js +1 -1
  3. package/package.json +13 -11
package/README.md CHANGED
@@ -29,11 +29,12 @@ Add to your MCP client configuration:
29
29
  ```json
30
30
  {
31
31
  "mcpServers": {
32
- "yazio-mcp": {
33
- "command": "npx yazio-mcp",
32
+ "yazio": {
33
+ "command": "npx",
34
+ "args": ["-y", "yazio-mcp"],
34
35
  "env": {
35
- "YAZIO_USERNAME": "your-email@example.com",
36
- "YAZIO_PASSWORD": "your-password"
36
+ "YAZIO_USERNAME": "your_email@emai.com",
37
+ "YAZIO_PASSWORD": "your_password"
37
38
  }
38
39
  }
39
40
  }
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ class YazioMcpServer {
11
11
  constructor() {
12
12
  this.server = new Server({
13
13
  name: 'yazio-mcp',
14
- version: '1.0.0',
14
+ version: '0.0.2',
15
15
  }, {
16
16
  capabilities: {
17
17
  tools: {},
package/package.json CHANGED
@@ -1,7 +1,18 @@
1
1
  {
2
2
  "name": "yazio-mcp",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "MCP server for accessing Yazio user & nutrition data (unofficial)",
5
+ "mcpName": "io.github.fliptheweb/yazio-mcp",
6
+ "author": "fliptheweb",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/fliptheweb/yazio-mcp.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/fliptheweb/yazio-mcp/issues"
14
+ },
15
+ "homepage": "https://github.com/fliptheweb/yazio-mcp#readme",
5
16
  "main": "dist/index.js",
6
17
  "types": "dist/index.d.ts",
7
18
  "type": "module",
@@ -32,16 +43,6 @@
32
43
  "health",
33
44
  "fitness"
34
45
  ],
35
- "author": "fliptheweb",
36
- "license": "MIT",
37
- "repository": {
38
- "type": "git",
39
- "url": "https://github.com/arturkornakov/yazio-mcp.git"
40
- },
41
- "bugs": {
42
- "url": "https://github.com/arturkornakov/yazio-mcp/issues"
43
- },
44
- "homepage": "https://github.com/arturkornakov/yazio-mcp#readme",
45
46
  "engines": {
46
47
  "node": ">=18.0.0"
47
48
  },
@@ -55,6 +56,7 @@
55
56
  "@types/node": "^20.0.0",
56
57
  "@typescript-eslint/eslint-plugin": "^8.44.1",
57
58
  "@typescript-eslint/parser": "^8.44.1",
59
+ "ajv-cli": "^5.0.0",
58
60
  "eslint": "^9.36.0",
59
61
  "globals": "^16.4.0",
60
62
  "prettier": "^3.6.2",