@jieunmarslim/server-editable-slides 0.1.2 → 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 (2) hide show
  1. package/index.js +1 -12
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -29,18 +29,7 @@ function getAuthToken() {
29
29
  }
30
30
 
31
31
  function getProject() {
32
- if (process.env.EDITABLE_SLIDES_PROJECT) {
33
- return process.env.EDITABLE_SLIDES_PROJECT;
34
- }
35
- try {
36
- return execSync('gcloud config get-value project', {
37
- stdio: ['ignore', 'pipe', 'ignore'],
38
- })
39
- .toString()
40
- .trim();
41
- } catch {
42
- return 'editnblm-in-ge-2036';
43
- }
32
+ return process.env.EDITABLE_SLIDES_PROJECT || 'editnblm-in-ge-2036';
44
33
  }
45
34
 
46
35
  async function callRemoteMcp(method, params, apiKey) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jieunmarslim/server-editable-slides",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Model Context Protocol (MCP) client for Editable Slides Cloud",
5
5
  "type": "module",
6
6
  "bin": {