@entergram/mcp 0.1.5 → 0.1.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 CHANGED
@@ -75,7 +75,7 @@ args = ["serve"]
75
75
  [mcp_servers.entergram.env]
76
76
  ENTERGRAM_MCP_ENV = "production"
77
77
  ENTERGRAM_MCP_CLIENT_ID = "entergram-ws-your-client-id"
78
- ENTERGRAM_MCP_SCOPE = "workspace.read members.read accounts.read contacts.read chats.read messages.read messages.write custom_fields.read custom_fields.write tickets.read offline_access"
78
+ ENTERGRAM_MCP_SCOPE = "workspace.read members.read accounts.read contacts.read chats.read chats.write messages.read messages.write custom_fields.read custom_fields.write tickets.read tickets.write offline_access"
79
79
  ```
80
80
 
81
81
  ## Defaults
package/dist/cli/bin.js CHANGED
File without changes
@@ -1,6 +1,6 @@
1
1
  export const CLI_VERSION = "0.1.0";
2
- export const DEFAULT_WORKSPACE_SCOPE = "workspace.read members.read accounts.read contacts.read chats.read messages.read messages.write custom_fields.read custom_fields.write tickets.read offline_access";
3
- export const DEFAULT_PERSONAL_SCOPE = "workspace.read accounts.read contacts.read chats.read chat_custom_fields.read chat_custom_fields.write messages.read tickets.read offline_access";
2
+ export const DEFAULT_WORKSPACE_SCOPE = "workspace.read members.read accounts.read contacts.read chats.read chats.write messages.read messages.write custom_fields.read custom_fields.write tickets.read tickets.write offline_access";
3
+ export const DEFAULT_PERSONAL_SCOPE = "workspace.read accounts.read contacts.read chats.read chat_custom_fields.read chat_custom_fields.write messages.read tickets.read tickets.write offline_access";
4
4
  export const DEFAULT_CALLBACK_HOST = "127.0.0.1";
5
5
  export const DEFAULT_CALLBACK_PORT = 8787;
6
6
  export const DEFAULT_CALLBACK_PATH = "/oauth/callback";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@entergram/mcp",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "private": false,
5
5
  "description": "Official Entergram MCP CLI for local MCP hosts with OAuth login, stdio bridging, and host config helpers.",
6
6
  "type": "module",
@@ -37,7 +37,10 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@modelcontextprotocol/sdk": "1.29.0",
40
- "jose": "^6.1.0"
40
+ "dotenv": "^17.4.2",
41
+ "fastify": "^5.8.5",
42
+ "jose": "^6.1.0",
43
+ "zod": "^4.3.6"
41
44
  },
42
45
  "devDependencies": {
43
46
  "@types/node": "^24.6.0",