sad-mcp 0.1.0 → 0.1.1

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/dist/auth.js +2 -2
  2. package/package.json +1 -1
package/dist/auth.js CHANGED
@@ -6,8 +6,8 @@ import { createServer } from "http";
6
6
  import open from "open";
7
7
  // OAuth credentials — embedded for desktop app (not secret per Google docs)
8
8
  // TODO: Replace with actual credentials from Google Cloud Console
9
- const CLIENT_ID = "721600472437-vaqegrbgqr2dta3fbmc55heqju7f6hl5.apps.googleusercontent.com";
10
- const CLIENT_SECRET = "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";
9
+ const CLIENT_ID = "721600472437-ioeke1596kjm95dph535902me3tgik8v.apps.googleusercontent.com";
10
+ const CLIENT_SECRET = "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";
11
11
  const REDIRECT_URI = "http://localhost:3456/oauth2callback";
12
12
  const SCOPES = ["https://www.googleapis.com/auth/drive.readonly"];
13
13
  const CONFIG_DIR = join(homedir(), ".sad-mcp");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sad-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for Software Analysis and Design course materials at BGU",
5
5
  "type": "module",
6
6
  "bin": {