@entergram/mcp 0.1.2 → 0.1.4

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 (2) hide show
  1. package/README.md +8 -33
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -22,24 +22,15 @@ npx -y @entergram/mcp serve
22
22
 
23
23
  ## Quick Start
24
24
 
25
- Production:
26
-
27
25
  ```bash
28
26
  entergram-mcp login
29
27
  entergram-mcp serve
30
28
  ```
31
29
 
32
- Development:
33
-
34
- ```bash
35
- entergram-mcp login --env dev
36
- entergram-mcp serve --env dev
37
- ```
38
-
39
30
  If you use a custom OAuth client, pass it explicitly:
40
31
 
41
32
  ```bash
42
- entergram-mcp login --env dev --client-id entergram-ws-your-client-id
33
+ entergram-mcp login --client-id entergram-ws-your-client-id
43
34
  ```
44
35
 
45
36
  ## Commands
@@ -55,7 +46,7 @@ entergram-mcp print-config
55
46
 
56
47
  Useful flags:
57
48
 
58
- - `--env dev|production`
49
+ - `--env production`
59
50
  - `--client-id ...`
60
51
  - `--scope "..."`
61
52
  - `--format json|toml`
@@ -71,34 +62,27 @@ entergram-mcp print-config --name entergram
71
62
  For TOML-based hosts such as Codex:
72
63
 
73
64
  ```bash
74
- entergram-mcp print-config --format toml --name entergram-dev
65
+ entergram-mcp print-config --format toml --name entergram
75
66
  ```
76
67
 
77
68
  Example TOML config:
78
69
 
79
70
  ```toml
80
- [mcp_servers.entergram-dev]
71
+ [mcp_servers.entergram]
81
72
  command = "entergram-mcp"
82
73
  args = ["serve"]
83
74
 
84
- [mcp_servers.entergram-dev.env]
85
- ENTERGRAM_MCP_ENV = "dev"
75
+ [mcp_servers.entergram.env]
76
+ ENTERGRAM_MCP_ENV = "production"
86
77
  ENTERGRAM_MCP_CLIENT_ID = "entergram-ws-your-client-id"
87
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"
88
79
  ```
89
80
 
90
81
  ## Defaults
91
82
 
92
- Production:
93
-
94
83
  - gateway: `https://mcp.entergram.com/mcp`
95
84
  - client id: `entergram-mcp-cli`
96
85
 
97
- Development:
98
-
99
- - gateway: `https://devmcp.entergram.com/mcp`
100
- - client id: `entergram-dev-mcp-client`
101
-
102
86
  Default local OAuth callback:
103
87
 
104
88
  `http://127.0.0.1:8787/oauth/callback`
@@ -137,15 +121,6 @@ If the consent screen does not show the scopes you expect, update that OAuth cli
137
121
  - Clear the local session and log in again:
138
122
 
139
123
  ```bash
140
- entergram-mcp logout --env dev --client-id entergram-ws-your-client-id
141
- entergram-mcp login --env dev --client-id entergram-ws-your-client-id
142
- ```
143
-
144
- ## Development
145
-
146
- ```bash
147
- npm run build
148
- npm run typecheck
149
- npm run smoke:cli
150
- npm run pack:dry-run
124
+ entergram-mcp logout --client-id entergram-ws-your-client-id
125
+ entergram-mcp login --client-id entergram-ws-your-client-id
151
126
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@entergram/mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
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",