@mondaydotcomorg/monday-api-mcp 0.1.0 → 0.1.3

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/CHANGELOG.md +0 -0
  2. package/README.md +17 -0
  3. package/package.json +11 -10
package/CHANGELOG.md ADDED
File without changes
package/README.md CHANGED
@@ -33,6 +33,23 @@ A server implementation for the [Model Context Protocol (MCP)](https://modelcont
33
33
  }
34
34
  ```
35
35
 
36
+ ### Example Integration with Claude Desktop
37
+
38
+ ```json
39
+ {
40
+ "mcpServers": {
41
+ "monday-api-mcp": {
42
+ "command": "npx",
43
+ "args": [
44
+ "@mondaydotcomorg/monday-api-mcp",
45
+ "-t",
46
+ "abcd123"
47
+ ]
48
+ }
49
+ }
50
+ }
51
+ ```
52
+
36
53
  ## License
37
54
 
38
55
  MIT
package/package.json CHANGED
@@ -1,11 +1,8 @@
1
1
  {
2
2
  "name": "@mondaydotcomorg/monday-api-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "description": "MCP server for using the monday.com API",
5
5
  "license": "MIT",
6
- "author": "Anthropic, PBC (https://anthropic.com)",
7
- "homepage": "https://modelcontextprotocol.io",
8
- "bugs": "https://github.com/modelcontextprotocol/servers/issues",
9
6
  "type": "module",
10
7
  "bin": {
11
8
  "mcp-server-monday-api": "dist/index.js"
@@ -16,7 +13,10 @@
16
13
  "scripts": {
17
14
  "build": "tsc && shx chmod +x dist/*.js",
18
15
  "watch": "tsc --watch",
19
- "start": "npm run build && node dist/index.js"
16
+ "start": "yarn build && node dist/index.js",
17
+ "test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --config jest.config.js",
18
+ "prettier": "prettier --write \"lib/**/*.ts\" --ignore-path \"../../.prettierignore\"",
19
+ "lint": "eslint --fix \"lib/**/*.ts\" --ignore-path \"../../.eslintignore\""
20
20
  },
21
21
  "repository": {
22
22
  "type": "git",
@@ -24,14 +24,15 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@modelcontextprotocol/sdk": "^1.7.0",
27
- "@mondaydotcomorg/agent-toolkit": "^0.1.2",
28
- "@types/node": "^22",
29
- "@types/node-fetch": "^2.6.12",
30
- "node-fetch": "^3.3.2",
31
- "universal-user-agent": "^7.0.2"
27
+ "@mondaydotcomorg/agent-toolkit": "workspace:*"
32
28
  },
33
29
  "devDependencies": {
30
+ "@types/jest": "^29.5.12",
31
+ "eslint": "^8.56.0",
32
+ "jest": "^29.7.0",
33
+ "prettier": "^3.2.4",
34
34
  "shx": "^0.3.4",
35
+ "ts-jest": "^29.3.1",
35
36
  "typescript": "^5.6.2"
36
37
  }
37
38
  }